11 lines
190 B
TypeScript
11 lines
190 B
TypeScript
|
// #docregion
|
||
|
import { Component } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'my-app',
|
||
|
template: '<h1>{{title}}</h1>',
|
||
|
})
|
||
|
export class AppComponent {
|
||
|
title = 'Minimal NgModule';
|
||
|
}
|