all files / app/feature-one/ feature-one.module.ts

100% Statements 9/9
100% Branches 0/0
100% Functions 2/2
100% Lines 6/6
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 161× 1×   1× 1× 1×                 1×  
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { SplcComponent } from './splc.component';
import { FEATURE_ONE_ROUTES } from './feature-one.routes';
import { RouterModule } from '@angular/router';
import { FeatureOneComponent } from './feature-one.component';
 
@NgModule({
  imports: [
    CommonModule,
    RouterModule.forChild(FEATURE_ONE_ROUTES)
  ],
  declarations: [FeatureOneComponent]
})
export class FeatureOneModule { }