weaver_trunk_cli/pc4mobx/hrm/components/financeV2/Content.js

16 lines
551 B
JavaScript
Raw Normal View History

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'>
<Form ecId={`${this && this.props && this.props.ecId || ''}_Form@0pwmop`} store={this.props.store} />
<TableData ecId={`${this && this.props && this.props.ecId || ''}_TableData@nk0k0h`} store={this.props.store} />
</div>
)
}
}