import React from 'react' const NewRoomConstructionComponent = ({ onStart, onFinish, onCancel, currentRoomInConstruction }) => { if (currentRoomInConstruction === '-1') { return (
Construct a new room
) } return (
Finalize new room
Cancel construction
) } export default NewRoomConstructionComponent