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