15 lines
305 B
Svelte
15 lines
305 B
Svelte
<script lang="ts">
|
|
import "bootstrap/scss/bootstrap.scss";
|
|
import "bootstrap-icons/font/bootstrap-icons.scss";
|
|
import type { LayoutData } from "./$types";
|
|
|
|
export let data: LayoutData;
|
|
</script>
|
|
|
|
{JSON.stringify(data.meta)}
|
|
|
|
{#if data.user}
|
|
{JSON.stringify(data.user)}
|
|
{/if}
|
|
|
|
<slot />
|