Last active
September 11, 2017 16:02
-
-
Save nitayneeman/1fed3d5bde946198154d5abd5ff29500 to your computer and use it in GitHub Desktop.
This file contains 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
<ul> | |
<li *ngFor="let todo of todos; let i = index"> | |
{{ todo }} <button (click)="removeTodo(i)">Remove</button> | |
</li> | |
</ul> | |
<button (click)="addTodo()">Add Todo</button> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment