import { observer, inject } from 'mobx-react'; import { toJS } from 'mobx'; import { WeaSelect } from 'ecCom'; @inject('hrmVacationBalanceReportCopy') @observer class DialogSelect extends React.Component { constructor(props) { super(props); } render() { const { hrmVacationBalanceReportCopy } = this.props, { dialogSelect, handleSelectChange, dialogPartChainCall } = hrmVacationBalanceReportCopy, { value, options, } = dialogSelect; return (
handleSelectChange(value, dialogPartChainCall)} />
); } } export default DialogSelect;