blob: d8774bf9b70a8167073e81ca13ba4d055edc46a3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import React from "react";
const DeleteMachineComponent = ({ onClick }) => (
<div className="btn btn-outline-danger btn-block" onClick={onClick}>
<span className="fa fa-trash mr-2" />
Delete this machine
</div>
);
export default DeleteMachineComponent;
|