lemon-football-92902
06/05/2024, 12:18 AMechoing-lunch-31570
06/12/2024, 5:54 PMconst Botpress = () => {
const client = useClient({ clientId });
return (
<WebchatProvider
client={client}
theme={theme}
configuration={configuration}
>
<style>{style}</style>
<Container
style={{
height: "100vh",
width: "50%",
display: "flex",
justifyContent: "space-between",
}}
>
<Header />
<MessageList />
<Composer>
<ComposerInput />
<ComposerButton />
</Composer>
</Container>
</WebchatProvider>
);
};
export default Botpress;
echoing-lunch-31570
06/12/2024, 5:55 PM