+
Todo List App
+
+ todos {() => this.list.length},
+ active {() => this.list.filter((c) => c.active).length},
+ done {() => this.list.filter((c) => !c.active).length},
+
+
+ {(todo: Todo, i: number, arr = this.list) =>
+
todo}>
+
+ {() => i} {' - '}
+
+
+ {(issue: number, j, arr2 = todo.issues) =>
+ {() => issue.toString()}
+
+ }
+
+
+ }
+
+
+
+