Skip to content

Commit

Permalink
Housekeeping
Browse files Browse the repository at this point in the history
  • Loading branch information
featherbear committed Sep 27, 2020
1 parent 2b4508e commit 65f243b
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions src/routes/_layout.svelte
@@ -1,21 +1,15 @@


<script>
// import Nav from "../components/Nav.svelte";
// import Nav from "../ui/components/Nav.svelte";
export let segment;
console.log("layout PROPS", $$props)
</script>

<style lang="scss" global>
@import "../ui/style/index.scss";
</style>

{#if [undefined, 'invite'].includes(segment) }
{#if [undefined, 'invite', 'debug'].includes(segment) }
<slot />
{:else}
<!-- <Nav {segment} /> -->
Layout
<slot />
{/if}

0 comments on commit 65f243b

Please sign in to comment.