2016-05-18 15:53:13 +02:00
|
|
|
import { Component } from '@angular/core';
|
|
|
|
|
2016-05-24 15:16:23 +02:00
|
|
|
import { HeroButtonComponent } from './heroes';
|
2016-05-18 15:53:13 +02:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'sg-app',
|
2016-05-23 16:02:41 +02:00
|
|
|
template: '<toh-hero-button label="OK"></toh-hero-button>',
|
2016-05-18 15:53:13 +02:00
|
|
|
directives: [HeroButtonComponent]
|
|
|
|
})
|
|
|
|
export class AppComponent { }
|