2016-05-21 15:04:08 -07:00

11 lines
247 B
TypeScript

import { Component } from '@angular/core';
import { HeroesComponent } from './heroes/heroes.component';
@Component({
selector: 'sg-app',
template: '<toh-heroes></toh-heroes>',
directives: [HeroesComponent]
})
export class AppComponent { }