11 lines
190 B
TypeScript
Raw Normal View History

2016-07-12 18:14:13 -07:00
// #docregion
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
template: '<h1>{{title}}</h1>',
})
export class AppComponent {
title = 'Minimal NgModule';
}