import React from 'react' import classnames from 'classnames' const Comment = props => { const styleSent = { color: '#fdfdfd', backgroundColor: props.customColor } const styleReceived = { color: '#333', backgroundColor: '#fdfdfd' } return (
  • {props.author}
    {props.createdAt}
  • ) } export default Comment