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