Add subpage for Qualify Exam
This commit is contained in:
parent
83d3a3af25
commit
24167f0650
1 changed files with 15 additions and 0 deletions
15
cms/src/routes/qualifying/[id]/+page.svelte
Normal file
15
cms/src/routes/qualifying/[id]/+page.svelte
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<script lang="ts">
|
||||
import type { PageData } from './$types'
|
||||
export let data: PageData;
|
||||
|
||||
</script>
|
||||
|
||||
<section class="items-start h-screen flex max-h-1000-px pt-10 bg-blueGray-100">
|
||||
|
||||
<div class="container mx-auto items-start flex flex-wrap px-4">
|
||||
<h2 class="font-semibold text-2xl text-blueGray-600 mb-4">
|
||||
การสอบคัดเลือก {data.id}
|
||||
</h2>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
Loading…
Add table
Add a link
Reference in a new issue