Move new ui to ui directory
This commit is contained in:
parent
bb72c351ac
commit
f85758ef33
56 changed files with 0 additions and 0 deletions
17
ui/src/routes/grades/[promo].svelte
Normal file
17
ui/src/routes/grades/[promo].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 '../../components/StudentGrades.svelte';
|
||||
|
||||
export let promo;
|
||||
</script>
|
||||
|
||||
<StudentGrades {promo} />
|
||||
5
ui/src/routes/grades/index.svelte
Normal file
5
ui/src/routes/grades/index.svelte
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<script>
|
||||
import StudentGrades from '../../components/StudentGrades.svelte';
|
||||
</script>
|
||||
|
||||
<StudentGrades />
|
||||
Reference in a new issue