2015-12-13 18:15:46 -05:00
|
|
|
// #docregion
|
2016-05-03 08:06:32 -04:00
|
|
|
import { Component } from '@angular/core';
|
2015-12-13 18:15:46 -05:00
|
|
|
|
|
|
|
@Component({
|
2016-09-25 21:51:54 -04:00
|
|
|
moduleId: module.id,
|
2015-12-13 18:15:46 -05:00
|
|
|
selector: 'my-app',
|
2016-09-25 21:51:54 -04:00
|
|
|
templateUrl: 'app.component.html'
|
2015-12-13 18:15:46 -05:00
|
|
|
})
|
|
|
|
export class AppComponent { }
|