2023-09-22 14:01:42 +08:00
|
|
|
import React, {Component} from 'react';
|
|
|
|
|
import {observer} from 'mobx-react';
|
|
|
|
|
import Form from './Form';
|
|
|
|
|
import TableData from './TableData';
|
|
|
|
|
|
|
|
|
|
@observer
|
|
|
|
|
export default class Content extends Component{
|
|
|
|
|
render(){
|
|
|
|
|
return (
|
|
|
|
|
<div className='content'>
|
2023-09-26 16:58:23 +08:00
|
|
|
<Form store={this.props.store} />
|
|
|
|
|
<TableData store={this.props.store} />
|
2023-09-22 14:01:42 +08:00
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
}
|