ngx-admin/src/app/pages/dashboard/contacts/contacts.component.html

14 lines
433 B
HTML
Raw Normal View History

<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>