Spruce up join button on spaces page

This commit is contained in:
Jon Staab
2024-08-15 12:08:07 -07:00
parent 6c3bcac61f
commit ae0450d408
10 changed files with 195 additions and 79 deletions
+13 -2
View File
@@ -1,5 +1,16 @@
<script lang="ts">
export let nom
import {page} from '$app/stores'
import {deriveGroup, deriveGroupConversation} from '@app/state'
const group = deriveGroup($page.params.nom)
const conversation = deriveGroupConversation($page.params.nom)
</script>
{nom}
<div class="h-screen flex flex-col">
<div class="min-h-32 bg-base-100">
</div>
<div class="flex-grow overflow-auto">
</div>
<div class="min-h-32 bg-base-100">
</div>
</div>