import { useState } from '@wordpress/element' import { ChatButton } from '@chat/components/ChatButton' import { ChatDialog } from '@chat/components/ChatDialog' import { motion, AnimatePresence } from 'framer-motion' export const Chat = () => { const [showDialog, setShowDialog] = useState(false) return ( <> setShowDialog(!showDialog)} /> {showDialog && ( )} ) }