Skip to content

Instantly share code, notes, and snippets.

@jessipearcy
Last active October 5, 2020 17:46
Show Gist options
  • Save jessipearcy/03e35ac93156c2ff30830865dd4f0263 to your computer and use it in GitHub Desktop.
Save jessipearcy/03e35ac93156c2ff30830865dd4f0263 to your computer and use it in GitHub Desktop.
<div class="all-habits">
<h1>All Habits</h1>
<button mat-raised-button color="accent" (click)="onAdd()">
Add New Habit
</button>
<div *ngFor="let habit of habits; let i = index">
<mat-card>
<mat-card-title>
<mat-icon
class="habit-icon"
color="accent"
aria-hidden="false"
aria-label="circle check mark icon"
>check_circle_outline</mat-icon
>
{{ habit.name }}
</mat-card-title>
<div class="detail-options">
<mat-icon
class="habit-icon"
color="primary"
>edit</mat-icon
>
<!--...Code Omitted...-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment