2016-03-24 19:30:26 +00:00
|
|
|
// #docregion
|
2016-09-19 19:57:59 -07:00
|
|
|
import { Component } from '@angular/core';
|
2016-03-24 19:30:26 +00:00
|
|
|
@Component({
|
|
|
|
selector: 'my-app',
|
2016-09-13 14:39:39 -07:00
|
|
|
templateUrl: 'app/app.component.html'
|
2016-03-24 19:30:26 +00:00
|
|
|
})
|
2016-09-13 14:39:39 -07:00
|
|
|
export class AppComponent { }
|