import Chatbot from 'react-chatbot-kit'
import config from './config'
import ActionProvider from './actionProvider'
import MessageParser from './messageParser'
const ChatBotFlight = () => {
return (
<div>
<Chatbot
config={config}
actionProvider={ActionProvider}
messageParser={MessageParser}
/>
</div>
)
}
export default ChatBotFlight
In my project, the implementation looks like this: https://i.sstatic.net/niMG8.png
However, upon checking documentation and tutorial videos, I noticed that adding the Chatbot component results in default styling which is not present in my project.