style migrate v3

pull/289/head
vapao 2020-11-28 23:54:01 +08:00
parent 55b4ea6b6f
commit 7b0682a0fe
2 changed files with 9 additions and 23 deletions

View File

@ -6,15 +6,15 @@
"@ant-design/icons": "^4.3.0",
"ace-builds": "^1.4.7",
"antd": "^4.8.5",
"axios": "^0.20.0",
"bizcharts": "^3.5.6",
"axios": "^0.21.0",
"bizcharts": "^3.5.9",
"history": "^4.10.1",
"lodash": "^4.17.19",
"mobx": "^5.15.6",
"mobx-react": "^6.3.0",
"moment": "^2.24.0",
"react": "^16.13.1",
"react-ace": "^8.0.0",
"react-ace": "^9.2.0",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",

View File

@ -5,25 +5,11 @@
*/
import React from 'react';
import styles from './index.module.css';
import { Form } from '@ant-design/compatible';
import '@ant-design/compatible/assets/index.css';
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 function () {
return (
<React.Fragment>
<div className={styles.title}>基本设置</div>
</React.Fragment>
)
}
export default Form.create()(BasicSetting)