21 lines
392 B
TypeScript
21 lines
392 B
TypeScript
|
import {NgModule, Component} from '@angular/core';
|
||
|
import {RouterModule} from '@angular/router';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'feature-component',
|
||
|
template: 'foo.html'
|
||
|
})
|
||
|
export class FeatureComponent {}
|
||
|
|
||
|
@NgModule({
|
||
|
declarations: [
|
||
|
FeatureComponent
|
||
|
],
|
||
|
imports: [
|
||
|
RouterModule.forChild([
|
||
|
{ path: '', component: FeatureComponent}
|
||
|
])
|
||
|
]
|
||
|
})
|
||
|
export class FeatureModule {}
|