Skip to content

Instantly share code, notes, and snippets.

@hieptlccc
Created October 7, 2022 12:01
Show Gist options
  • Save hieptlccc/6bfdc42bd08910a4153ade9b551d8951 to your computer and use it in GitHub Desktop.
Save hieptlccc/6bfdc42bd08910a4153ade9b551d8951 to your computer and use it in GitHub Desktop.
1 on 1 Angular Chat - chat.component.html
<div class="chat" [style]="theme">
<div class="responsive chat__wrapper">
<cometchat-user-list-with-messages></cometchat-user-list-with-messages>
</div>
<aside class="chat__sidebar">
<ul class="chat__icons">
<a [routerLink]="['profile']">
<img
class="chat__icon"
title="Profile page"
src="/assets/user.svg"
alt="Chat Button Icon"
/>
</a>
<a (click)="logOut()">
<img
class="chat__icon"
title="Logout"
src="/assets/logout.svg"
alt="Chat Button Icon"
/>
</a>
</ul>
</aside>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment