import { Flex, Stack } from '@chakra-ui/react' import { TypingEmulationSettings } from 'models' import { useTypebot } from 'contexts/TypebotContext/TypebotContext' import React from 'react' import { TypingEmulation } from './TypingEmulation' export const SettingsContent = () => { const { typebot, updateTypebot } = useTypebot() const handleTypingEmulationUpdate = ( typingEmulation: TypingEmulationSettings ) => { if (!typebot) return updateTypebot({ settings: { ...typebot.settings, typingEmulation } }) } return ( ) }