mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
8 lines
170 B
TypeScript
8 lines
170 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'my-app',
|
|
template: `<h1>Hello {{name}}</h1>`,
|
|
})
|
|
export class AppComponent { name = 'Angular'; }
|