Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More

ml-react-chatbot

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ml-react-chatbot

React Chatbot

  • 0.4.5
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created

React Chatbot

A chatbot component to create conversation chats

Getting Start

npm install ml-react-chatbot --save

Usage

import ChatBot from 'ml-react-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')
);

FAQs

Package last updated on 27 Dec 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts