cold-balloon-17868
02/10/2024, 3:19 PMglamorous-guitar-39983
02/10/2024, 5:24 PMcold-balloon-17868
02/10/2024, 5:46 PMimport React, { useEffect } from 'react'
const Chatbot = () => {
useEffect(() => {
const script = document.createElement('script')
script.src = 'https://cdn.botpress.cloud/webchat/v1/inject.js'
script.async = true
document.body.appendChild(script)
script.onload = () => {
window.botpressWebChat.init({
botId: '',
hostUrl: 'https://cdn.botpress.cloud/webchat/v1',
messagingUrl: 'https://messaging.botpress.cloud',
clientId: '',
})
}
}, [])
return <div id="webchat"/>
}
export default Chatbot
cold-balloon-17868
02/10/2024, 5:47 PMcold-balloon-17868
02/10/2024, 5:48 PMcold-balloon-17868
02/10/2024, 5:48 PM<div>
<Chatbot/>
</div>
glamorous-guitar-39983
02/10/2024, 7:44 PMcold-balloon-17868
02/11/2024, 7:47 AMcold-balloon-17868
02/11/2024, 7:48 AMuseEffect(() => {
const existingScript = document.getElementById('botpress-webchat-script');
if (!existingScript) {
const script = document.createElement('script');
script.id = 'botpress-webchat-script';
script.src = 'https://cdn.botpress.cloud/webchat/v1/inject.js';
script.async = true;
document.body.appendChild(script);
script.onload = () => {
window.botpressWebChat.init({
botId: '',
hostUrl: 'https://cdn.botpress.cloud/webchat/v1',
messagingUrl: 'https://messaging.botpress.cloud',
clientId: 'd590412c-38c5-4946-87cc-4e8e3f9ef4fd',
});
};
}
}, []);