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