diff options
Diffstat (limited to 'src_frontend/Components/Editor/Editor.svelte')
-rw-r--r-- | src_frontend/Components/Editor/Editor.svelte | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src_frontend/Components/Editor/Editor.svelte b/src_frontend/Components/Editor/Editor.svelte index b63ee9b..1876bf6 100644 --- a/src_frontend/Components/Editor/Editor.svelte +++ b/src_frontend/Components/Editor/Editor.svelte @@ -13,6 +13,7 @@ import ControlComponents from "../MainControls/ControlComponents.svelte"; import Controls from "./Controls.svelte"; import Output from "./Output.svelte"; + import Simulation from "./Simulation.svelte"; import { authorizedSocket, authorizedSocketNeeded } from "../../stores/socketStore"; authorizedSocketNeeded.set(true); @@ -276,12 +277,12 @@ <main use:initDebugger> <div class="simulation"> <Pane header="simulation"> + <Simulation /> </Pane> </div> <div class="controls"> <Pane header="Controls"> - <!-- <ControlComponents /> --> <Controls /> </Pane> </div> |