You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
| 123456789101112131415 |
- 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;
|