import IndentedTree from '@/components/indented-tree/indented-tree'; import { IModalProps } from '@/interfaces/common'; import { Drawer, Flex, Progress } from 'antd'; import { useTranslation } from 'react-i18next'; import { usePendingMindMap } from './hooks'; interface IProps extends IModalProps { data: any; } const MindMapDrawer = ({ data, hideModal, visible, loading }: IProps) => { const { t } = useTranslation(); const percent = usePendingMindMap(); return ( {loading ? ( ) : ( )} ); }; export default MindMapDrawer;