blob: fe12827daf73ad813f93c0c7181ad13c90ec39a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import { connect } from 'react-redux'
import { goFromRackToMachine } from '../../../../../actions/interaction-level'
import MachineComponent from '../../../../../components/app/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
|