blob: 21ab06c4236151cf34e2bcc6c3d994057105c192 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import {connect} from "react-redux";
import {goFromRackToMachine} from "../../../../actions/interaction-level";
import MachineComponent from "../../../../components/sidebars/topology/rack/MachineComponent";
const mapStateToProps = (state, ownProps) => {
return {
machine: state.objects.machine[ownProps.machineId],
};
};
const mapDispatchToProps = (dispatch, ownProps) => {
return {
onClick: () => dispatch(goFromRackToMachine(ownProps.position)),
};
};
const MachineContainer = connect(
mapStateToProps,
mapDispatchToProps
)(MachineComponent);
export default MachineContainer;
|