blob: f16c19f02e39c7514aa1a95cc788e47bd850ac8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import React from "react";
import NewRoomConstructionContainer from "../../../../../containers/app/sidebars/topology/building/NewRoomConstructionContainer";
const BuildingSidebarComponent = ({ inSimulation }) => {
return (
<div>
<h2>Building</h2>
{inSimulation ? (
<div className="alert alert-info">
<span className="fa fa-info-circle mr-2" />
<strong>Click on individual rooms</strong> to see their stats!
</div>
) : (
<NewRoomConstructionContainer />
)}
</div>
);
};
export default BuildingSidebarComponent;
|