blob: 00965c18a9a5ebd3ea6d94bab6e07c6586a41361 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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
|