diff options
Diffstat (limited to 'src_frontend/Components/Editor/TopBar.svelte')
-rw-r--r-- | src_frontend/Components/Editor/TopBar.svelte | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src_frontend/Components/Editor/TopBar.svelte b/src_frontend/Components/Editor/TopBar.svelte index c74adf0..6ca6e84 100644 --- a/src_frontend/Components/Editor/TopBar.svelte +++ b/src_frontend/Components/Editor/TopBar.svelte @@ -1,4 +1,5 @@ <script> + import { onMount } from "svelte"; import { createEventDispatcher } from 'svelte'; import { pop } from "svelte-spa-router"; import PrettyVar from "../../ComponentLib/PrettyVar.svelte"; @@ -59,4 +60,4 @@ <button on:click={() => dispatch("start")}><i class="fas fa-play"></i>Start</button> {/if} </div> -</div>
\ No newline at end of file +</div> |