0.4.4 • Published 5 years ago

@mobylogix/react-chatbot v0.4.4

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

React Chatbot

A chatbot component to create conversation chats

Getting Start

npm install @mobylogix/react-chatbot --save

Usage

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')
);