We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4186a2f commit 793c04cCopy full SHA for 793c04c
src/app/book/book-list/book-list.component.html
@@ -1,5 +1,16 @@
1
-<ul>
2
- <li *ngFor="let book of books | async">
3
- <a [routerLink]="[book.isbn]">{{book.title}}</a>
4
- </li>
5
-</ul>
+<table class="table table-striped">
+ <thead>
+ <tr>
+ <th scope="col">Title</th>
+ <th scope="col">ISBN</th>
6
+ <th scope="col">Author</th>
7
+ </tr>
8
+ </thead>
9
+ <tbody>
10
+ <tr *ngFor="let book of books | async">
11
+ <td><a [routerLink]="[book.isbn]">{{book.title}}</a></td>
12
+ <td><a>{{book.isbn}}</a></td>
13
+ <td><a>{{book.author}}</a></td>
14
15
+ </tbody>
16
+</table>
0 commit comments