-
Notifications
You must be signed in to change notification settings - Fork 391
Expand file tree
/
Copy pathindex.tsx
More file actions
28 lines (24 loc) · 850 Bytes
/
index.tsx
File metadata and controls
28 lines (24 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// 文档质量评估组件
import React from 'react'
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'
import { Activity } from 'lucide-react'
interface DocumentQualityEvaluationProps {
warehouseId: string
}
export const DocumentQualityEvaluation: React.FC<DocumentQualityEvaluationProps> = () => {
return (
<Card>
<CardHeader>
<CardTitle>文档质量评估</CardTitle>
<CardDescription>评估和分析文档质量</CardDescription>
</CardHeader>
<CardContent>
<div className="text-center py-8">
<Activity className="h-12 w-12 mx-auto mb-4 opacity-50" />
<p className="text-muted-foreground">文档质量评估功能开发中...</p>
</div>
</CardContent>
</Card>
)
}
export default DocumentQualityEvaluation