source: Sources/frontend/src/app/category/category.component.html

Last change on this file was 8423429, checked in by AngelNasev <angel.nasev@…>, 15 months ago

Add backend and frontend projects

  • Property mode set to 100644
File size: 221 bytes
Line 
1<div class="parent-container">
2 <h1>Категории</h1>
3 <div class="list">
4 <div *ngFor="let c of categories">
5 <p class="card">
6 {{c.name}}
7 </p>
8 </div>
9 </div>
10</div>
Note: See TracBrowser for help on using the repository browser.