Created
February 26, 2018 07:04
-
-
Save rohanBagchi/b07b63df0078fb32378a4611fb999294 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 ChatBubble from './ChatBubble'; | |
| import ImageGallery from 'some-custom-gallery'; | |
| ... | |
| <ChatBubble sentBy={message.sentBy} time={message.time}> | |
| <div className="message-body-wrapper"> | |
| {message.images.length && | |
| <ImageGallery images=[message.images]/> | |
| } | |
| {message.messageText} | |
| </div> | |
| </ChatBubble> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment