// #docregion import { Component } from '@angular/core'; @Component({ selector: 'my-app', template: '

{{title}}

', }) export class AppComponent { title = 'Minimal NgModule'; }