Skip to content

Instantly share code, notes, and snippets.

@kevinchisholm
Last active January 5, 2018 09:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kevinchisholm/72a4c1f9d537cbd5b1cc1aa61c7cd97e to your computer and use it in GitHub Desktop.
Save kevinchisholm/72a4c1f9d537cbd5b1cc1aa61c7cd97e to your computer and use it in GitHub Desktop.
import {Component} from '@angular/core';
@Component({
selector: 'home',
templateUrl: 'src/home/home.html'
})
export class HomeComponent {
days : any = [
'Monday',
'Tuesday',
'Wednesday',
'Thursday',
'Friday',
'Saturday',
'Sunday'
];
}
<ul>
<li *ngFor="let day of days">
<p>{{day}}</p>
</li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment