2026-07-21 19:19:36 +08:00
|
|
|
import { Card, Empty, Typography } from '@arco-design/web-react'
|
2026-07-21 00:46:09 +08:00
|
|
|
|
2026-07-21 19:19:36 +08:00
|
|
|
const { Title, Text } = Typography
|
2026-07-21 00:46:09 +08:00
|
|
|
|
2026-07-21 19:19:36 +08:00
|
|
|
export function WorkspaceExplorePage() {
|
2026-07-21 00:46:09 +08:00
|
|
|
return (
|
|
|
|
|
<div className="workspace-explore-page overview-page">
|
|
|
|
|
<div className="overview-head">
|
|
|
|
|
<div>
|
|
|
|
|
<Title heading={4}>探索</Title>
|
2026-07-21 19:19:36 +08:00
|
|
|
<Text type="secondary">外部数据源与同步能力不在当前 MVP 范围内。</Text>
|
2026-07-21 00:46:09 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2026-07-21 19:19:36 +08:00
|
|
|
<Card className="queue-section" bordered>
|
|
|
|
|
<Empty description="探索数据源暂未开放" />
|
|
|
|
|
</Card>
|
2026-07-21 00:46:09 +08:00
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|