import React, { memo } from 'react'; import classnames from 'classnames'; import Text from 'components/Text'; import stringToRGB from 'utils/color'; const Message = ({ message, coloredNick, onNickClick }) => { const className = classnames('message', { [`message-${message.type}`]: message.type }); if (message.type === 'date') { return (
{message.time}
{message.from && (
onNickClick(message.from)}
>
{message.from}
)}
{' '}