flat:初始化

This commit is contained in:
史典卓
2024-11-18 16:38:38 +08:00
commit 903776f4b9
242 changed files with 24577 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
import { PageContainer } from '@ant-design/pro-components';
import { Card } from 'antd';
import React from 'react';
/**
*
* @author whiteshader@163.com
*
* */
const Settings: React.FC = () => {
return (
<PageContainer>
<Card title="Developing" />
</PageContainer>
);
};
export default Settings;