wip
This commit is contained in:
7
apps/client/src/routes/+layout.svelte
Normal file
7
apps/client/src/routes/+layout.svelte
Normal file
@@ -0,0 +1,7 @@
|
||||
<script lang="ts">
|
||||
import '../app.postcss';
|
||||
</script>
|
||||
|
||||
<div class="h-full">
|
||||
<slot />
|
||||
</div>
|
||||
10
apps/client/src/routes/+page.svelte
Normal file
10
apps/client/src/routes/+page.svelte
Normal file
@@ -0,0 +1,10 @@
|
||||
<script lang="ts">
|
||||
import { t } from '$lib/store';
|
||||
import { onMount } from 'svelte';
|
||||
onMount(async () => {
|
||||
const a = await t.api.getConnection.query();
|
||||
console.log(a);
|
||||
});
|
||||
</script>
|
||||
|
||||
<div>hello</div>
|
||||
Reference in New Issue
Block a user