Add user id to ui

This commit is contained in:
Robert Long 2021-07-26 17:03:20 -07:00
commit 60ee420592
2 changed files with 9 additions and 0 deletions

View file

@ -485,6 +485,9 @@ function Room({ client }) {
{!loading && room && (
<div className={styles.header}>
<h3>{room.name}</h3>
<div className={styles.userNav}>
<h5>{client.getUserId()}</h5>
</div>
</div>
)}
{loading && (