11 lines
273 B
TypeScript
11 lines
273 B
TypeScript
// #docregion
|
|
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-root',
|
|
template: `<app-hero-form-template></app-hero-form-template>
|
|
<hr>
|
|
<app-hero-form-reactive></app-hero-form-reactive>`
|
|
})
|
|
export class AppComponent { }
|