generateur_v3/frontend/src/routes/exercices/[[slug]]/+page.svelte

9 lines
189 B
Svelte
Raw Normal View History

2022-12-27 23:39:58 +01:00
<script>
import Feed from '../../../components/exos/Feed.svelte';
/** @type {import('./$types').PageData} */
</script>
2023-02-28 20:08:40 +01:00
<svelte:head>
<title>Exercices</title>
</svelte:head>
2022-12-27 23:39:58 +01:00
<Feed />