12 lines
199 B
TypeScript
12 lines
199 B
TypeScript
|
// #docregion
|
||
|
import { Component } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'toh-app',
|
||
|
template: `
|
||
|
<toh-nav></toh-nav>
|
||
|
<toh-heroes></toh-heroes>
|
||
|
`
|
||
|
})
|
||
|
export class AppComponent { }
|