Changed the whole tech stack to SvelteKit which means: - Typescript - SSR - No fastify :( - Beta, but it's fine! Other changes: - Tailwind -> Tailwind JIT - A lot more
12 lines
269 B
Svelte
12 lines
269 B
Svelte
<script>
|
|
import Configuration from '$components/Database/Configuration.svelte';
|
|
</script>
|
|
|
|
<div class="min-h-full text-white">
|
|
<div class="py-5 text-left px-6 text-3xl tracking-tight font-bold flex items-center">
|
|
Select a database
|
|
</div>
|
|
</div>
|
|
|
|
<Configuration />
|