Added API and first UI

This commit is contained in:
2017-02-26 21:08:38 +01:00
parent 23e47005cf
commit 373fdf8417
33 changed files with 784 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
<h3>Our favorite beers!</h3>
<div class="grid grid-pad">
<a *ngFor="let beer of beers" [routerLink]="['/detail', beer.id]" class="col-1-4">
<div class="module hero">
<h4>{{beer.name}}</h4>
</div>
</a>
</div>