weaver_trunk_cli/pc4mobx/hrm/components/CheckingNew.js

17 lines
416 B
JavaScript
Raw Normal View History

2024-12-11 15:32:14 +08:00
import React from 'react';
import {
inject,
observer
} from 'mobx-react';
import CardCheckingNew from '../../hrmAttendance/components/Checking';
@inject('hrmCard')
@observer
export default class CheckIngNew extends React.Component {
render(){
return React.cloneElement(<CardCheckingNew ecId={`${this && this.props && this.props.ecId || ''}_CardCheckingNew@mvpzoi`} />, {
...this.props
});
}
}