21 lines
496 B
JavaScript
21 lines
496 B
JavaScript
import Legend from "../Legend";
|
|
import ViewerOne from "../SceneOne/ViewerOne";
|
|
import SceneChartPanel from "./SceneChartPanel";
|
|
|
|
function SceneTwo() {
|
|
return (
|
|
<div className="scene_two">
|
|
<ViewerOne>
|
|
<div className="right-panel one" style={{ height: "unset" }}>
|
|
<div className="bottom-panel">
|
|
<SceneChartPanel />
|
|
</div>
|
|
</div>
|
|
<Legend style={{ bottom: "40px" }} />
|
|
</ViewerOne>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default SceneTwo;
|