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