16 lines
338 B
TypeScript
Raw Normal View History

2016-05-18 15:53:13 +02:00
import { Component } from '@angular/core';
import { HEROES_URL, VILLAIN_URL } from './shared/data.service';
@Component({
selector: 'sg-app',
template: `
<div>Heroes url: {{heroesUrl}}</div>
<div>Villains url: {{villainsUrl}}</div>
`,
})
export class AppComponent {
heroesUrl = HEROES_URL;
villainsUrl = VILLAIN_URL;
}