summaryrefslogtreecommitdiff
path: root/src/components/sidebars/topology/machine/DeleteMachineComponent.js
blob: f6fd39da077b7a8c0065950af5c7a12fe1269776 (plain)
1
2
3
4
5
6
7
8
9
10
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;