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