summaryrefslogtreecommitdiff
path: root/src/containers/sidebars/topology/rack/MachineContainer.js
blob: 74a0bfbcf62c647d4dba85777f77174d36b980b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import {connect} from "react-redux";
import MachineComponent from "../../../../components/sidebars/topology/rack/MachineComponent";

const mapStateToProps = (state, ownProps) => {
    return {
        machine: state.objects.machine[ownProps.machineId],
    };
};

const mapDispatchToProps = dispatch => {
    return {
        onClick: () => undefined, // TODO implement transition to MACHINE mode
    };
};

const MachineContainer = connect(
    mapStateToProps,
    mapDispatchToProps
)(MachineComponent);

export default MachineContainer;