mirror of
https://github.com/LukeHagar/website.git
synced 2025-12-09 12:57:48 +00:00
11 lines
238 B
Svelte
11 lines
238 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 />
|