aboutsummaryrefslogtreecommitdiffstats
path: root/apps/kit/src/routes/(main)/+layout.svelte
blob: 9787e178c3fbeeff5d45efb6ae54182561ccff02 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<script lang="ts">
    import "../../app.pcss";
    import { setLocale } from "$lib/i18n/i18n-svelte";
    import type { LayoutData } from "./$types";

    export let data: LayoutData;

    setLocale(data.locale);
</script>

<slot />