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