summaryrefslogtreecommitdiff
path: root/src/components/sidebars/topology/machine/DeleteMachineComponent.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/sidebars/topology/machine/DeleteMachineComponent.js')
-rw-r--r--src/components/sidebars/topology/machine/DeleteMachineComponent.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/components/sidebars/topology/machine/DeleteMachineComponent.js b/src/components/sidebars/topology/machine/DeleteMachineComponent.js
new file mode 100644
index 00000000..f6fd39da
--- /dev/null
+++ b/src/components/sidebars/topology/machine/DeleteMachineComponent.js
@@ -0,0 +1,11 @@
+import React from "react";
+
+const DeleteMachineComponent = ({onClick}) => {
+ return (
+ <div className="btn btn-danger btn-block" onClick={onClick}>
+ Delete this machine
+ </div>
+ );
+};
+
+export default DeleteMachineComponent;