Starowo's picture
Upload 1411 files
b9fe2b4 verified
raw
history blame
395 Bytes
import { useFetchKnowledgeGraph } from '@/hooks/knowledge-hooks';
import React from 'react';
import ForceGraph from './force-graph';
const KnowledgeGraphModal: React.FC = () => {
const { data } = useFetchKnowledgeGraph();
return (
<section className={'w-full h-full'}>
<ForceGraph data={data?.graph} show></ForceGraph>
</section>
);
};
export default KnowledgeGraphModal;