import { PageContainer } from '@ant-design/pro-components'; import { useModel } from '@umijs/max'; import { Card, theme } from 'antd'; import React from 'react'; /** * 每个单独的卡片,为了复用样式抽成了组件 * @param param0 * @returns */ const InfoCard: React.FC<{ title: string; index: number; desc: string; href: string; }> = ({ title, href, index, desc }) => { const { useToken } = theme; const { token } = useToken(); return (
); }; const Welcome: React.FC = () => { const { token } = theme.useToken(); const { initialState } = useModel('@@initialState'); return (Ant Design Pro 是一个整合了 umi,Ant Design 和 ProComponents 的脚手架方案。致力于在设计规范和基础组件的基础上,继续向上构建,提炼出典型模板/业务组件/配套设计资源,进一步提升企业级中后台产品设计研发过程中的『用户』和『设计者』的体验。