Files
agent/apps/web_v1/src/pages/workspace-explore.tsx

20 lines
576 B
TypeScript
Raw Normal View History

import { Card, Empty, Typography } from '@arco-design/web-react'
const { Title, Text } = Typography
export function WorkspaceExplorePage() {
return (
<div className="workspace-explore-page overview-page">
<div className="overview-head">
<div>
<Title heading={4}></Title>
<Text type="secondary"> MVP </Text>
</div>
</div>
<Card className="queue-section" bordered>
<Empty description="探索数据源暂未开放" />
</Card>
</div>
)
}