minor cleanup
This commit is contained in:
parent
0200c31ded
commit
f75268a1d1
@ -1,15 +1,21 @@
|
|||||||
<script>
|
<script>
|
||||||
import GoogleAuth from '$lib/components/GoogleAuth.svelte';
|
|
||||||
import Composite from '$lib/components/Composite.svelte';
|
import Composite from '$lib/components/Composite.svelte';
|
||||||
|
|
||||||
let componentsData = {
|
let componentsData = {
|
||||||
layout: `
|
layout: `
|
||||||
grid-template-areas:
|
grid-template-areas:
|
||||||
|
"app",
|
||||||
"main"
|
"main"
|
||||||
"footer";
|
"footer";
|
||||||
grid-template-rows: 1fr auto;
|
grid-template-rows: 150px 1fr auto;
|
||||||
`,
|
`,
|
||||||
children: [
|
children: [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
componentName: 'GoogleAuth',
|
||||||
|
props: {},
|
||||||
|
slot: 'app'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: 2,
|
id: 2,
|
||||||
componentName: 'Messages',
|
componentName: 'Messages',
|
||||||
@ -27,19 +33,3 @@
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Composite {componentsData} />
|
<Composite {componentsData} />
|
||||||
|
|
||||||
<!-- <div class="fixed top-0 left-0 w-full h-full overflow-hidden">
|
|
||||||
<main class="grid grid-rows-[auto,1fr,auto] min-h-screen">
|
|
||||||
<header class="p-4 text-black bg-gray-100">
|
|
||||||
<GoogleAuth />
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<main class="p-4">
|
|
||||||
<Messages />
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer class="p-4 bg-gray-300">
|
|
||||||
<MessageInput />
|
|
||||||
</footer>
|
|
||||||
</main>
|
|
||||||
</div> -->
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user