mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-01-21 08:46:10 +01:00
feat(dashboard): add contacts and room selector components
This commit is contained in:
parent
d351b3d6ff
commit
61869dad7a
18 changed files with 374 additions and 19 deletions
13
src/app/pages/dashboard/contacts/contacts.component.html
Normal file
13
src/app/pages/dashboard/contacts/contacts.component.html
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<nga-card size="xmedium">
|
||||
<nga-tabset fullWidth>
|
||||
<nga-tab tabTitle="Contacts">
|
||||
<div class="contact" *ngFor="let c of contacts">
|
||||
<nga-user [picture]="c.user.picture" [name]="c.user.name" [title]="c.type" size="xmedium"></nga-user>
|
||||
<i class="ion-ios-telephone-outline"></i>
|
||||
</div>
|
||||
</nga-tab>
|
||||
<nga-tab tabTitle="Recent">
|
||||
<span>Content #2</span>
|
||||
</nga-tab>
|
||||
</nga-tabset>
|
||||
</nga-card>
|
||||
Loading…
Add table
Add a link
Reference in a new issue