In my sample application I have written a feature module \"TempModule\" and below is the code.
import { NgModule } from \'@angular/core\'; import { CommonMod
You're trying to import decorator in imports array. It should contain only modules
decorator
imports
@NgModule({ declarations: [ TempOneComponent, TempTwoComponent], imports: [ NgModule, <== why is it here??? CommonModule, tempRouting] }) export class TempModule {}