12 lines
203 B
TypeScript
12 lines
203 B
TypeScript
// #docregion
|
|
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
moduleId: module.id,
|
|
selector: 'my-app',
|
|
templateUrl: 'app.component.html'
|
|
})
|
|
|
|
export class AppComponent { }
|
|
// #enddocregion
|