summaryrefslogtreecommitdiff
path: root/frontend/src/containers/app/sidebars/topology/machine/MachineNameContainer.js
blob: 5c29f85f04c6ce44f73b8be6c13b472f4491f5af (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