🚀 Init bot-engine
This commit is contained in:
19
apps/builder/pages/typebots/[id].tsx
Normal file
19
apps/builder/pages/typebots/[id].tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { Flex } from '@chakra-ui/layout'
|
||||
import { Seo } from 'components/Seo'
|
||||
import { GraphProvider } from 'contexts/BoardContext'
|
||||
import React from 'react'
|
||||
|
||||
const TypebotEditPage = () => {
|
||||
return (
|
||||
<>
|
||||
<Seo title="Editor" />
|
||||
<Flex overflow="hidden" h="100vh">
|
||||
<GraphProvider>
|
||||
<></>
|
||||
</GraphProvider>
|
||||
</Flex>
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
export default TypebotEditPage
|
Reference in New Issue
Block a user