2016-03-24 15:30:26 -04:00
|
|
|
// #docregion
|
2016-09-13 17:39:39 -04:00
|
|
|
import { Component } from '@angular/core';
|
2016-06-03 21:15:14 -04:00
|
|
|
|
2016-03-24 15:30:26 -04:00
|
|
|
@Component({
|
|
|
|
selector: 'my-app',
|
2016-09-13 17:39:39 -04:00
|
|
|
templateUrl: 'app/app.component.html'
|
2016-03-24 15:30:26 -04:00
|
|
|
})
|
2016-09-13 17:39:39 -04:00
|
|
|
export class AppComponent { }
|