workadventure/front/src/Components/App.svelte

12 lines
224 B
Svelte
Raw Normal View History

2021-05-11 17:37:21 +02:00
<script lang="typescript">
import MenuIcon from "./Menu/MenuIcon.svelte";
import {menuIconVisible} from "../Stores/MenuStore";
2021-05-11 17:37:21 +02:00
</script>
<div>
2021-05-17 16:50:35 +02:00
<!-- {#if $menuIconVisible}
<MenuIcon />
2021-05-17 16:50:35 +02:00
{/if} -->
2021-05-11 17:37:21 +02:00
</div>