aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/need-list/need-list.component.html
blob: b8774f18b1666af3b18e1bdd24dd0e50f52ecd52 (plain) (blame)
1
2
3
4
5
6
7
<h1>Needs List</h1>
<li *ngFor="let need of needs">
    <a routerLink="/need/{{need.id}}">
        {{need.name}}
    </a>
    <button (click)="delete(need.id)">Delete</button>
</li>