import { useTranslation } from 'react-i18next'; import IndentedTree from './indented-tree'; import { useFetchKnowledgeGraph } from '@/hooks/knowledge-hooks'; import { IModalProps } from '@/interfaces/common'; import { Modal } from 'antd'; const IndentedTreeModal = ({ visible, hideModal, }: IModalProps & { documentId: string }) => { const { data } = useFetchKnowledgeGraph(); const { t } = useTranslation(); return (
); }; export default IndentedTreeModal;