Advertisement
andreadc

user-page.component.html

Mar 4th, 2020
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.46 KB | None | 0 0
  1. <body>
  2.     <h2>Welcome to User Page</h2>
  3.     <div class="containerUser">
  4.         <div class="items" *ngIf="user$ | async as u; else loading">
  5.             <h2 class="sellerUsername">username:<b>{{u['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