1. ## app.component.ts
    2. import { Component } from '@angular/core';
    3. @Component({
    4. selector: 'app-root',
    5. templateUrl: './app.component.html',
    6. styleUrls: ['./app.component.css']
    7. })
    8. export class AppComponent {
    9. title = 'my-app';
    10. }
    1. <div>{{title}}</div>