summaryrefslogtreecommitdiff
path: root/src/containers/app/sidebars/topology/machine/MachineNameContainer.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/containers/app/sidebars/topology/machine/MachineNameContainer.js')
-rw-r--r--src/containers/app/sidebars/topology/machine/MachineNameContainer.js12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/containers/app/sidebars/topology/machine/MachineNameContainer.js b/src/containers/app/sidebars/topology/machine/MachineNameContainer.js
index 9d23dcb6..05d2bf80 100644
--- a/src/containers/app/sidebars/topology/machine/MachineNameContainer.js
+++ b/src/containers/app/sidebars/topology/machine/MachineNameContainer.js
@@ -1,14 +1,12 @@
-import {connect} from "react-redux";
+import { connect } from "react-redux";
import MachineNameComponent from "../../../../../components/app/sidebars/topology/machine/MachineNameComponent";
const mapStateToProps = state => {
- return {
- position: state.interactionLevel.position,
- };
+ return {
+ position: state.interactionLevel.position
+ };
};
-const MachineNameContainer = connect(
- mapStateToProps
-)(MachineNameComponent);
+const MachineNameContainer = connect(mapStateToProps)(MachineNameComponent);
export default MachineNameContainer;