Skip to content

Instantly share code, notes, and snippets.

@actarian
Created December 16, 2019 15:27
Show Gist options
  • Save actarian/d7a56996414b79bc27622309aac76e09 to your computer and use it in GitHub Desktop.
Save actarian/d7a56996414b79bc27622309aac76e09 to your computer and use it in GitHub Desktop.
RxComp - Declarative Syntax
<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