mirror of
https://github.com/LukeHagar/website.git
synced 2025-12-10 12:57:49 +00:00
11 lines
248 B
Svelte
11 lines
248 B
Svelte
<script lang="ts">
|
|
import { globToTutorial } from '$lib/utils/tutorials.js';
|
|
import { setContext } from 'svelte';
|
|
|
|
export let data;
|
|
const tutorials = globToTutorial(data);
|
|
setContext('tutorials', tutorials);
|
|
</script>
|
|
|
|
<slot />
|