In my sample application I have written a feature module \"TempModule\" and below is the code.
import { NgModule } from \'@angular/core\'; import { CommonMod
Another way you can see this error is by importing a module from the wrong place. For example:
import {CommonModule} from '@angular/core'; // wrong
should be:
import {CommonModule} from '@angular/common';