mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
16 lines
398 B
TypeScript
16 lines
398 B
TypeScript
// #docregion import
|
|
import { Component } from '@angular/core';
|
|
// #enddocregion import
|
|
|
|
// #docregion metadata, component
|
|
@Component({
|
|
selector: 'app-root',
|
|
templateUrl: './app.component.html',
|
|
styleUrls: ['./app.component.css']
|
|
})
|
|
// #enddocregion metadata
|
|
// #docregion title, class
|
|
export class AppComponent {
|
|
title = 'My First Angular App!';
|
|
}
|
|
// #enddocregion title, class, component
|