Floating Action Button (Fab)
import "./style.css"
import theme from "./theme.json"
import { Fab, Container, WebchatProvider, useClient } from '@botpress/webchat'
const App = () => {
const client = useClient({ clientId: '453254325-54325-435-345-345534253' })
return (
<WebchatProvider client={client} theme={theme}>
<Container>
<Fab />
</Container>
</WebchatProvider>
)
}