import type { FC } from 'react' import { memo } from 'react' import type { KnowledgeBaseNodeType } from './types' import IndexMethod from './components/index-method' import type { NodePanelProps } from '@/app/components/workflow/types' const Panel: FC> = () => { return (
) } export default memo(Panel)