summaryrefslogtreecommitdiff
path: root/opendc-web/opendc-web-ui/src/containers/app/sidebars/topology/machine/MachineNameContainer.js
blob: 1cf35b0589393d9bd6a82e7fe9907f107963730a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import { connect } from 'react-redux'
import MachineNameComponent from '../../../../../components/app/sidebars/topology/machine/MachineNameComponent'

const mapStateToProps = (state) => {
    return {
        position: state.interactionLevel.position,
    }
}

const MachineNameContainer = connect(mapStateToProps)(MachineNameComponent)

export default MachineNameContainer