summaryrefslogtreecommitdiff
path: root/src/components/sidebars/topology/building/CancelNewRoomConstructionComponent.js
blob: 15f199a69937af054dc04432ce0156dccf1a9380 (plain)
1
2
3
4
5
6
7
8
9
import React from "react";

const CancelNewRoomConstructionComponent = ({onClick}) => (
    <div className="btn btn-default btn-block" onClick={onClick}>
        Cancel construction
    </div>
);

export default CancelNewRoomConstructionComponent;