Created
October 8, 2022 06:45
-
-
Save shinokada/97c8918de11071dd0458494baa75e7f7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| $: toggleSide = () => { | |
| if (width >= breakPoint) { | |
| drawerHidden = false; | |
| } else { | |
| drawerHidden = true; | |
| } | |
| }; | |
| </script> | |
| {#each data.pages as { meta, path }} | |
| <SidebarItem label={meta.title} href={`/pages${path}`} {spanClass} on:click={toggleSide} /> | |
| {/each} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment