13 lines
305 B
TypeScript
Raw Normal View History

import { Card, Typography } from '@arco-design/web-react';
const { Title } = Typography;
export default function Dashboard() {
return (
<Card>
<Title heading={4}>Dashboard</Title>
<Typography.Text type="secondary">使</Typography.Text>
</Card>
);
}