2015-10-20 19:10:44 -04:00
|
|
|
// #docregion
|
2016-08-09 12:38:25 -04:00
|
|
|
import { Component } from '@angular/core';
|
2015-10-20 19:10:44 -04:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'my-app',
|
2016-08-09 12:38:25 -04:00
|
|
|
template: '<hero-form></hero-form>'
|
2015-10-20 19:10:44 -04:00
|
|
|
})
|
2015-12-11 14:50:57 -05:00
|
|
|
export class AppComponent { }
|