2023-01-09 14:51:36 +01:00
|
|
|
import { Standard } from '..'
|
2023-01-25 11:27:47 +01:00
|
|
|
import { leadGenerationTypebot } from './assets/leadGenerationTypebot'
|
2023-01-09 14:51:36 +01:00
|
|
|
|
|
|
|
export const Default = () => {
|
|
|
|
return (
|
|
|
|
<div style={{ height: '500px' }}>
|
2023-01-16 12:13:21 +01:00
|
|
|
<Standard
|
2023-01-25 11:27:47 +01:00
|
|
|
typebot={leadGenerationTypebot}
|
2023-01-16 12:13:21 +01:00
|
|
|
apiHost="http://localhost:3001"
|
|
|
|
isPreview
|
|
|
|
/>
|
2023-01-09 14:51:36 +01:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
2023-01-25 11:27:47 +01:00
|
|
|
|
|
|
|
export const StartWhenIntoView = () => {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<div style={{ height: '300vh' }} />
|
|
|
|
<Standard
|
|
|
|
typebot={leadGenerationTypebot}
|
|
|
|
apiHost="http://localhost:3001"
|
|
|
|
isPreview
|
|
|
|
style={{ height: '300px' }}
|
|
|
|
/>
|
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|