Para los que estén teniendo este error:
▲ [WARNING] NG8103: The \*ngFor directive was used in the template, but neither the NgFor directive nor the CommonModule was imported. Use Angular's built-in control flow @for or make sure that either the NgFor directive or the CommonModule is inc
es porque aunque en el video no lo explica, el profesor tiene en el app.component.ts un import a CommonModule, la solución sería agregarlo en el imports que está adentro del @Component:
imports: [RouterOutlet, CommonModule],