22 lines
339 B
JavaScript
22 lines
339 B
JavaScript
|
import React from "react";
|
||
|
import ChatBot from "react-simple-chatbot";
|
||
|
|
||
|
const Wizard = () => {
|
||
|
const steps = [
|
||
|
{
|
||
|
id: "0",
|
||
|
message: "Welcome to react chatbot!",
|
||
|
trigger: "1"
|
||
|
},
|
||
|
{
|
||
|
id: "1",
|
||
|
message: "Bye!",
|
||
|
end: true
|
||
|
}
|
||
|
];
|
||
|
|
||
|
return <ChatBot steps={steps} />;
|
||
|
};
|
||
|
|
||
|
export default Wizard;
|