Created
December 16, 2019 15:27
-
-
Save actarian/d7a56996414b79bc27622309aac76e09 to your computer and use it in GitHub Desktop.
RxComp - Declarative Syntax
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<li class="list__item" *for="let item of items" [class]="{ done: item.done }" [style]="{ background: background, color: foreground, '--accent': accent }" todo-item-component [item]="item" (toggle)="onToggleItem($event)" (remove)="onRemoveItem($event)"> | |
<button type="button" class="btn--toggle" (click)="onToggle(item)"> | |
<div class="date" [innerHTML]="item.date | date : 'en-US' : { month: 'short', day: '2-digit', year: 'numeric' }"></div> | |
<div class="title" [innerHTML]="item.name"></div> | |
</button> | |
<button type="button" class="btn--remove" (click)="onRemove(item)"> | |
<i class="icon--remove"></i> | |
</button> | |
</li> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment