Guest User

Untitled

a guest
Feb 16th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <h2>List Notes</h2>
  2. <!-- link menuju ke add note -->
  3. <button [routerLink]="'/add-note'">Add Note</button>
  4.  
  5. <ul>
  6. <!-- looping async -->
  7. <li *ngFor="let list of list | async">
  8. {{list.judul}}
  9. <br>
  10. {{list.tgl}}
  11. <button [routerLink]="['/edit-note', list.id]">Edit</button>
  12. <button (click)="deleteNote(list.id)">Hapus</button>
  13. </li>
  14. </ul>
Add Comment
Please, Sign In to add comment