diff options
Diffstat (limited to 'usecaseui-portal/src/app/test/test.component.html')
-rw-r--r-- | usecaseui-portal/src/app/test/test.component.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/usecaseui-portal/src/app/test/test.component.html b/usecaseui-portal/src/app/test/test.component.html new file mode 100644 index 00000000..200be4e6 --- /dev/null +++ b/usecaseui-portal/src/app/test/test.component.html @@ -0,0 +1,25 @@ +<div class="test-holder"> + <h1>Mock data works!</h1> + <nz-table #basicTable [nzData]="tableData"> + <thead> + <tr> + <th>Name</th> + <th>Phone</th> + <th>Address</th> + <th>Action</th> + </tr> + </thead> + <tbody> + <tr *ngFor="let data of tableData"> + <td>{{data.name}}</td> + <td>{{data.phone}}</td> + <td>{{data.address}}</td> + <td> + <a>Action δΈ€ {{data.name}}</a> + <nz-divider nzType="vertical"></nz-divider> + <a>Delete</a> + </td> + </tr> + </tbody> + </nz-table> +</div>
\ No newline at end of file |