import { Flex } from '@chakra-ui/react' import { TypebotViewer } from 'bot-engine' import { useTypebot } from 'contexts/TypebotContext/TypebotContext' import React from 'react' import { parseTypebotToPublicTypebot } from 'services/publicTypebot' import { getViewerUrl } from 'utils' import { ThemeSideMenu } from '../../components/theme/ThemeSideMenu' export const ThemeContent = () => { const { typebot } = useTypebot() const publicTypebot = typebot && parseTypebotToPublicTypebot(typebot) return ( {publicTypebot && ( )} ) }