* Removed 03-05, 04-12, 04-15. Removed style for whitespace in imports. Removed + sign prefix for routing folders. Updated all code. Removed style that said to use lazy loading. There was no value in the style other than use it :) * renamed componet router to router
12 lines
217 B
TypeScript
12 lines
217 B
TypeScript
// #docregion
|
|
import { Component } from '@angular/core';
|
|
|
|
// #docregion example
|
|
import { HeroesComponent } from './heroes';
|
|
// #enddocregion example
|
|
|
|
@Component({
|
|
selector: 'toh-app'
|
|
})
|
|
export class AppComponent {}
|