mirror of https://github.com/openspug/spug
29 lines
597 B
JavaScript
29 lines
597 B
JavaScript
/**
|
|
* Copyright (c) OpenSpug Organization. https://github.com/openspug/spug
|
|
* Copyright (c) <spug.dev@gmail.com>
|
|
* 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 (
|
|
<React.Fragment>
|
|
<div className={styles.title}>基本设置</div>
|
|
</React.Fragment>
|
|
)
|
|
}
|
|
}
|
|
export default Form.create()(BasicSetting)
|