Full-screen in React

So können Sie den chatbot als Vollbild in Ihr React Projekt einbinden:

Tragen Sie folgenden code im body-tag der html Datei ein.
Verwenden Sie dabei die Chat-ID, die Sie von uns erhalten haben.


import { FullPageChat } from "antex-embed-react"

const App = () => {
    return (
        <FullPageChat
            chatflowid="<Chat-ID>"
            apiHost: "http://proxy01.antex.chat",
        />
    );
};