Angular Error in Console of the web browser
Make sure that you are importing the @angular/common module into your feature module. i.e. import { CommonModule } from '@angular/common';
then list the common module in the imports array
@NgModule({ imports:[ CommonModule ]...})