Created
February 26, 2018 06:41
-
-
Save rohanBagchi/a503269f9e1c01623f66519423b3a239 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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