blob: 894ffdf78511ce1976c26fa5795a462f7aeaa4b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import React from "react";
const RackConstructionComponent = ({inRackConstructionMode, onStart, onStop}) => {
if (inRackConstructionMode) {
return (
<div className="btn btn-primary btn-block" onClick={onStop}>
Stop rack construction
</div>
);
}
return (
<div className="btn btn-primary btn-block" onClick={onStart}>
Start rack construction
</div>
);
};
export default RackConstructionComponent;
|