React Simple Chatbot
Easy way to create conversation chats.

Getting Start
npm install react-simple-chatbot --save
Usage
There are several examples on the website. Here is the first one to get you started:
import ChatBot from 'react-simple-chatbot';
const steps = [
  {
    id: '0',
    message: 'Welcome to react chatbot!',
    trigger: '1',
  },
  {
    id: '1',
    message: 'Bye!',
    end: true,
  },
];
ReactDOM.render(
  <div>
    <ChatBot steps={steps} />
  </div>,
  document.getElementById('root')
);
React Simple Chatbot on media
Build with react-simple-chatbot
- Seth Loh Website - Personal website of Seth Loh (demo)
 - Paul's Website - Personal website of Paul Jiang (demo)
 - Cisco Partner Support API Chatbot - Code with screenshots to have your own Cisco Serial lookup chatbot.
 
Built something with react-simple-chatbot? Submit a PR and add it to this list!