Skip to content

Instantly share code, notes, and snippets.

@rohanBagchi
Created February 26, 2018 07:04
Show Gist options
  • Select an option

  • Save rohanBagchi/b07b63df0078fb32378a4611fb999294 to your computer and use it in GitHub Desktop.

Select an option

Save rohanBagchi/b07b63df0078fb32378a4611fb999294 to your computer and use it in GitHub Desktop.
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