2016-09-13 14:39:39 -07:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { SharedModule } from '../shared/shared.module';
|
2016-10-05 16:59:09 -05:00
|
|
|
import { routedComponents, HeroRoutingModule } from './hero-routing.module';
|
2016-09-13 14:39:39 -07:00
|
|
|
|
|
|
|
@NgModule({
|
2016-10-05 16:59:09 -05:00
|
|
|
imports: [ SharedModule, HeroRoutingModule ],
|
2016-09-13 14:39:39 -07:00
|
|
|
declarations: [ routedComponents ]
|
|
|
|
})
|
|
|
|
export class HeroModule { }
|