I need to embed my own chatbot built using React in other React apps using <script>. Can anyone tell me where to start?
I need to do like this:
<script>
window.chatbaseConfig = {
chatbotId: "9hA3--GLvK_7q1DRscuH3",
}
</script>
<script
src="https://www.chatbase.co/embed.min.js"
id="9hA3--GLvK_7q1DRscuH3"
defer>
</script>
Have you tried using the
<iframe>html tag? The iframe tag is used to embed another document within the current HTML document. Here is more information W3Schools iframe