)}
```
#### 6.2 创建InsightsPanel组件
```typescript
// components/InsightsPanel.tsx
import { BarChart3, AlertCircle, Database, Layers } from 'lucide-react';
interface InsightsPanelProps {
dataStats?: {
totalRows: number;
totalCols: number;
missingCount: number;
missingRate: number;
};
}
const InsightsPanel: React.FC