Sky.Net/client/src/app/app.component.html

9 lines
249 B
HTML
Raw Normal View History

2022-05-12 15:07:23 -07:00
<app-nav-bar></app-nav-bar>
<div class="container" style="margin-top: 140px;">
<h1>Welcome to {{title}}</h1>
<ul>
<li class="list-unstyled" *ngFor="let product of products">
{{product.name}}
</li>
</ul>
</div>