2016-05-18 09:53:13 -04:00
|
|
|
import { Component } from '@angular/core';
|
|
|
|
|
2016-05-24 09:16:23 -04:00
|
|
|
import { HeroButtonComponent } from './heroes';
|
2016-05-18 09:53:13 -04:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
moduleId: module.id,
|
|
|
|
selector: 'sg-app',
|
|
|
|
templateUrl: 'app.component.html',
|
|
|
|
directives: [HeroButtonComponent]
|
|
|
|
})
|
|
|
|
export class AppComponent { }
|