37 lines
1.1 KiB
HTML
37 lines
1.1 KiB
HTML
<p>view compoent</p>
|
|
<div
|
|
class="sm:absolute sm:inset-0 flex flex-col flex-auto min-w-0 sm:overflow-hidden bg-card dark:bg-transparent"
|
|
>
|
|
<!-- Header -->
|
|
<div
|
|
class="relative flex flex-col sm:flex-row flex-0 sm:items-center sm:justify-between py-8 px-6 md:px-8 border-b"
|
|
>
|
|
<!-- Loader -->
|
|
<!-- <div class="absolute inset-x-0 bottom-0" *ngIf="isLoading">
|
|
<mat-progress-bar [mode]="'indeterminate'"></mat-progress-bar> -->
|
|
<!-- </div> -->
|
|
<!-- Title -->
|
|
<div class="text-4xl font-extrabold tracking-tight">User View</div>
|
|
<!-- Actions -->
|
|
<div class="flex shrink-0 items-center mt-6 sm:mt-0 sm:ml-4"></div>
|
|
</div>
|
|
|
|
<!-- Main -->
|
|
<div class="flex flex-auto overflow-hidden">
|
|
<!-- Products list -->
|
|
<div
|
|
class="flex flex-col flex-auto sm:mb-18 overflow-hidden sm:overflow-y-auto"
|
|
>
|
|
<ng-container *ngIf="true"> ddddd</ng-container>
|
|
|
|
<ng-template #noUser>
|
|
<div
|
|
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
|
>
|
|
There are no user!
|
|
</div>
|
|
</ng-template>
|
|
</div>
|
|
</div>
|
|
</div>
|