balibabu
Feat: Display the knowledge graph on the knowledge base page #4543 (#4587)
51db3f9
raw
history blame contribute delete
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;