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