svelte-migrate: renamed files
This commit is contained in:
parent
6d9cbdf048
commit
4d6149760d
30 changed files with 0 additions and 0 deletions
17
ui/src/routes/grades/[promo]/+page.svelte
Normal file
17
ui/src/routes/grades/[promo]/+page.svelte
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<script context="module">
|
||||
export async function load({ params }) {
|
||||
return {
|
||||
props: {
|
||||
promo: params.promo,
|
||||
}
|
||||
};
|
||||
}
|
||||
</script>
|
||||
|
||||
<script>
|
||||
import StudentGrades from '$lib/components/StudentGrades.svelte';
|
||||
|
||||
export let promo;
|
||||
</script>
|
||||
|
||||
<StudentGrades {promo} />
|
||||
Reference in a new issue