10 lines
286 B
TypeScript
Raw Normal View History

import { NgModule } from '@angular/core';
import { SharedModule } from '../shared/shared.module';
import { routedComponents, routing } from './hero.routing';
@NgModule({
imports: [ SharedModule, routing ],
declarations: [ routedComponents ]
})
export class HeroModule { }