mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
13 lines
232 B
TypeScript
13 lines
232 B
TypeScript
// #docregion
|
|
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'my-app',
|
|
template: `
|
|
<div class="container">
|
|
<h1>Reactive Forms</h1>
|
|
<hero-list></hero-list>
|
|
</div>`
|
|
})
|
|
export class AppComponent { }
|