Skip to content

Instantly share code, notes, and snippets.

@rohanBagchi
Created February 26, 2018 06:41
Show Gist options
  • Save rohanBagchi/a503269f9e1c01623f66519423b3a239 to your computer and use it in GitHub Desktop.
Save rohanBagchi/a503269f9e1c01623f66519423b3a239 to your computer and use it in GitHub Desktop.
import React from 'react';
export default ChatBubble = props => {
return (
<div className='wrapper'>
<div className='header'>
<div className='sentBy'>
{props.sentBy}
</div>
<div className='avatar'>
<image src={props.avatar}/>
</div>
</div>
<div className='body'>
<div className='messageContent'>
{props.messageContent}
</div>
</div>
<div className='footer'>
<div className='time'>
<icon name='clock'/> {props.time}
</div>
</div>
</div>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment