import { ChatBox } from '@/components/ChatBox'; import React from 'react'; interface TextPanelProps { panelId: string; } export const TextPanel: React.FC = React.memo(({ panelId }) => { // return ; return
TODO: panelId: {panelId}
; }); TextPanel.displayName = 'TextPanel';