Skip to content

Instantly share code, notes, and snippets.

@witnessmenow
Created May 5, 2016 12:53
Show Gist options
  • Save witnessmenow/8a9952569ba184ae2008313b85abfdf5 to your computer and use it in GitHub Desktop.
Save witnessmenow/8a9952569ba184ae2008313b85abfdf5 to your computer and use it in GitHub Desktop.
Node React wrapper
import { Conversation } from 'chat-template';
import ReactDOM from 'react-dom';
import React from 'react';
const showChatTemplate = (messages, element, delay = 1, height = 300) => {
ReactDOM.render(<Conversation delay={delay} height={height} messages={messages} />,
element);
};
module.exports = showChatTemplate;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment