U 更新系统设置

pull/22/head
vapao 2020-01-16 18:46:08 +08:00
parent 86f9a86aeb
commit 7ebe699d74
1 changed files with 0 additions and 11 deletions

View File

@ -4,7 +4,6 @@
* Released under the MIT License.
*/
import React from 'react';
import { Button, Form, Input } from 'antd';
import styles from './index.module.css';
@ -12,16 +11,6 @@ export default function BasicSetting(props) {
return (
<React.Fragment>
<div className={styles.title}>基本设置</div>
<Form style={{maxWidth: 320}}>
<Form.Item colon={false} label="昵称">
<Input placeholder="请输入"/>
</Form.Item>
<Form.Item colon={false} label="邮箱">
<Input placeholder="请输入"/>
</Form.Item>
<Button type="primary">保存设置</Button>
</Form>
</React.Fragment>
)
}