Files
hms/apps/web/src/pages/health/PatientList.tsx
iven cdbf381060
Some checks failed
CI / security-audit (push) Has been cancelled
CI / rust-check (push) Has been cancelled
CI / rust-test (push) Has been cancelled
CI / frontend-build (push) Has been cancelled
feat(web): 路由和菜单集成 + 10 页面占位
- App.tsx 添加 10 条 lazy 路由(患者/医护/预约/随访/咨询)
- MainLayout.tsx 添加健康管理菜单组(7 项菜单 + 10 条标题映射)
- 创建 10 个页面占位组件
2026-04-25 00:42:12 +08:00

11 lines
257 B
TypeScript

import { Card, Typography } from 'antd';
export default function PatientList() {
return (
<Card>
<Typography.Title level={4}></Typography.Title>
<Typography.Text type="secondary"></Typography.Text>
</Card>
);
}