import { useFetchFlow } from '@/hooks/flow-hooks'; import { IModalProps } from '@/interfaces/common'; import { Drawer } from 'antd'; import { getDrawerWidth } from '../utils'; import FlowChatBox from './box'; const ChatDrawer = ({ visible, hideModal }: IModalProps) => { const { data } = useFetchFlow(); return ( ); }; export default ChatDrawer;