2
0
Files
bot/packages/react/src/stories/popup.stories.tsx

17 lines
369 B
TypeScript
Raw Normal View History

import { Popup } from '../Popup'
import { open, toggle } from '@typebot.io/js'
export const Default = () => {
return (
<>
<button onClick={open}>Open modal</button>
<button onClick={toggle}>Toggle modal</button>
<Popup
typebotId="ladleTypebot"
apiHost="http://localhost:3001"
autoShowDelay={3000}
/>
</>
)
}