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 ; }; export default Wizard;