UNPKG

arkit

Version:

Visualises JavaScript, TypeScript and Flow codebases as meaningful and committable architecture diagrams

11 lines (10 loc) 494 B
<section class="todoapp"> <todo-header></todo-header> <section class="main" *ngIf="getTodos().length"> <input id="toggle-all" class="toggle-all" type="checkbox" #toggleall [checked]="allCompleted()" (click)="setAllTo(toggleall)"> <ul class="todo-list"> <todo-item *ngFor="let todo of getTodos()" [todo]="todo" (itemRemoved)="remove($event)" (itemModified)="update($event)"></todo-item> </ul> </section> <todo-footer></todo-footer> </section>