2015-10-20 16:10:44 -07:00
|
|
|
// #docregion
|
2016-05-03 14:06:32 +02:00
|
|
|
import { Component } from '@angular/core';
|
2016-06-08 01:06:25 +02:00
|
|
|
import { HeroFormComponent } from './hero-form.component';
|
2015-10-20 16:10:44 -07:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'my-app',
|
|
|
|
template: '<hero-form></hero-form>',
|
|
|
|
directives: [HeroFormComponent]
|
|
|
|
})
|
2015-12-11 11:50:57 -08:00
|
|
|
export class AppComponent { }
|