Files
ngrx-demo/src/app/app.component.html
2017-09-28 16:55:46 +01:00

28 lines
791 B
HTML

<!--The content below is only a placeholder and can be replaced.-->
<div style="text-align:center">
<h1>
Hello, {{title}}!
</h1>
<div class="col-md-6">
<h1>List of things</h1>
<table class="table table-striped table-hover">
<thead>
<tr>
<td>Id</td>
<td>Title</td>
</tr>
</thead>
<tr *ngFor="let p of podcasts$ | async" (click)="onSelect(p)" style="cursor: pointer;">
<td>{{p.id}}</td>
<td>{{p.title}}</td>
</tr>
</table>
</div>
<div class="col-md-6">
<h1>Details are here</h1>
<div class="well">
{{(selected$ | async)?.body}}
</div>
</div>
</div>