Jiarenxiang | 38dcb05 | 2025-03-13 16:40:09 +0800 | [diff] [blame^] | 1 | import { PageContainer } from '@ant-design/pro-components'; |
2 | import { Card } from 'antd'; | ||||
3 | import React from 'react'; | ||||
4 | |||||
5 | /** | ||||
6 | * | ||||
7 | * @author whiteshader@163.com | ||||
8 | * | ||||
9 | * */ | ||||
10 | |||||
11 | |||||
12 | const Settings: React.FC = () => { | ||||
13 | return ( | ||||
14 | <PageContainer> | ||||
15 | <Card title="Developing" /> | ||||
16 | </PageContainer> | ||||
17 | ); | ||||
18 | }; | ||||
19 | |||||
20 | export default Settings; |