summaryrefslogtreecommitdiff
path: root/src/containers/app/sidebars/topology/machine/DeleteMachineContainer.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/containers/app/sidebars/topology/machine/DeleteMachineContainer.js')
-rw-r--r--src/containers/app/sidebars/topology/machine/DeleteMachineContainer.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/containers/app/sidebars/topology/machine/DeleteMachineContainer.js b/src/containers/app/sidebars/topology/machine/DeleteMachineContainer.js
deleted file mode 100644
index f42c8ba7..00000000
--- a/src/containers/app/sidebars/topology/machine/DeleteMachineContainer.js
+++ /dev/null
@@ -1,15 +0,0 @@
-import { connect } from "react-redux";
-import { openDeleteMachineModal } from "../../../../../actions/modals/topology";
-import DeleteMachineComponent from "../../../../../components/app/sidebars/topology/machine/DeleteMachineComponent";
-
-const mapDispatchToProps = dispatch => {
- return {
- onClick: () => dispatch(openDeleteMachineModal())
- };
-};
-
-const DeleteMachineContainer = connect(undefined, mapDispatchToProps)(
- DeleteMachineComponent
-);
-
-export default DeleteMachineContainer;