mirror of
https://github.com/LukeHagar/website.git
synced 2025-12-06 04:22:07 +00:00
11 lines
278 B
Svelte
11 lines
278 B
Svelte
<script lang="ts">
|
|
import { globToTutorial } from '$lib/utils/tutorials.js';
|
|
import { setContext } from 'svelte';
|
|
|
|
let { data, children } = $props();
|
|
const tutorials = globToTutorial(data);
|
|
setContext('tutorials', tutorials);
|
|
</script>
|
|
|
|
{@render children()}
|