Add colored nicks settings option

This commit is contained in:
Ken-Håvard Lieng 2018-10-15 08:56:17 +02:00
parent ec03db4db6
commit 6c6a9e12cf
27 changed files with 577 additions and 109 deletions

View file

@ -16,12 +16,13 @@ export default class UserList extends PureComponent {
};
renderUser = ({ index, style, key }) => {
const { users, onNickClick } = this.props;
const { users, coloredNicks, onNickClick } = this.props;
return (
<UserListItem
key={key}
user={users[index]}
coloredNick={coloredNicks}
style={style}
onClick={onNickClick}
/>