import { Component } from '@angular/core';
import { HEROES_URL, VILLAINS_URL } from './shared';
@Component({
  selector: 'sg-app',
  template: `
    
Heroes url: {{heroesUrl}}
    Villains url: {{villainsUrl}}
  `,
})
export class AppComponent {
  heroesUrl = HEROES_URL;
  villainsUrl = VILLAINS_URL;
}