Advertisement
andreadc

user-page.component.html

Mar 3rd, 2020
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.48 KB | None | 0 0
  1. <body>
  2.     <h2>Welcome to User Page</h2>
  3.     <div class="containerUser">
  4.         <div class="items" *ngIf="userService.getUserById(userId) | async as user$; else loading">
  5.             <h2 class="sellerUsername"><b>{{user$.username}}</b></h2>
  6.         </div>
  7.         <ng-template #loading>Loading...</ng-template>
  8.         <div class="items"><app-star-rating userId="{{userId}}"></app-star-rating></div>
  9.     </div>
  10.     <app-user-gallery [userId]="userId"></app-user-gallery>
  11. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement