Skip to content

Commit

Permalink
Revert "Update colors example for Angular 17 (matschik#213)"
Browse files Browse the repository at this point in the history
This reverts commit 58fe4e7.
  • Loading branch information
matschik committed Feb 9, 2024
1 parent 8ab64ca commit b35dbd3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions content/2-templating/3-loop/angular/colors.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ import { Component } from "@angular/core";
selector: "app-colors",
template: `
<ul>
@for (color of colors) {
<li>{{ color }}</li>
}
<li *ngFor="let color of colors">{{ color }}</li>
</ul>
`,
})
Expand Down

0 comments on commit b35dbd3

Please sign in to comment.