/** * Copyright (c) OpenSpug Organization. https://github.com/openspug/spug * Copyright (c) * Released under the MIT License. */ import React from 'react'; import styles from './index.module.css'; import { Form} from "antd"; import { observer } from 'mobx-react' @observer class BasicSetting extends React.Component { constructor(props) { super(props); this.state = {} } render() { return (
基本设置
) } } export default Form.create()(BasicSetting)