I have go throgh the steps mentioned on https://update.angular.io/. after completing the process I got these errors. please help me
CodePudding user response:
try this: in your app or library module
import { CommonModule } from '@angular/common';
and add it to imports array
imports: [CommonModule]
CodePudding user response:
Check if component imported/exported properly and added to declarations
