2016-03-24 15:30:26 -04:00
|
|
|
// #docregion
|
2016-09-19 22:57:59 -04:00
|
|
|
import { Component } from '@angular/core';
|
2016-03-24 15:30:26 -04:00
|
|
|
@Component({
|
2016-09-25 21:51:54 -04:00
|
|
|
moduleId: module.id,
|
2016-03-24 15:30:26 -04:00
|
|
|
selector: 'my-app',
|
2016-09-25 21:51:54 -04:00
|
|
|
templateUrl: 'app.component.html'
|
2016-03-24 15:30:26 -04:00
|
|
|
})
|
2016-09-13 17:39:39 -04:00
|
|
|
export class AppComponent { }
|