mirror of
https://github.com/RYDE-WORK/Langchain-Chatchat.git
synced 2026-02-05 06:03:14 +08:00
12 lines
275 B
TypeScript
12 lines
275 B
TypeScript
'use client';
|
|
|
|
import dynamic from 'next/dynamic';
|
|
import { memo } from 'react';
|
|
|
|
const KnowledgeBaseConfig = dynamic(() => import('./features/KnowledgeBaseConfig'));
|
|
const KnowledgeDetail = memo(() => {
|
|
return <KnowledgeBaseConfig />;
|
|
});
|
|
|
|
export default KnowledgeDetail;
|