display who is typing directly under chat input

This commit is contained in:
Barry Gitarts 2018-11-25 06:27:53 -05:00
parent a37cc6441c
commit d08e4f21a6
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ class WhoIsTyping extends PureComponent {
render() {
const userList = this.whoIsTyping();
return (
<div>
<div style={{ textAlign: 'center' }}>
{!userList.length ? "" : `${userList.join(',')} is typing`}
</div>
)