This commit is contained in:
Samuel Andert
2023-07-25 15:54:36 +02:00
parent 38ec75d19b
commit b560897e17
5 changed files with 27 additions and 20 deletions

View File

@ -5,20 +5,27 @@
layout: `
grid-template-areas:
"auth",
"hello",
"google"
grid-template-rows: 1fr 1fr;
"header",
"main",
"footer"
grid-template-rows: 1fr 1fr auto;
`,
children: [
{
id: 'authsig',
componentName: 'HelloEarth',
slot: 'hello'
id: '1',
componentName: 'GoogleAuth',
slot: 'header',
services: ['setupLit']
},
{
id: '2',
componentName: 'Messages',
slot: 'Main'
},
// {
// id: 'wallet1',
// id: '2',
// componentName: 'Wallet',
// slot: 'play',
// slot: 'main',
// state: {
// rpcURL: 'https://rpc.gnosischain.com/',
// pkpPubKey:
@ -26,10 +33,9 @@
// }
// },
{
id: 'google',
componentName: 'GoogleAuth',
slot: 'google',
services: ['setupLitProvider']
id: '3',
componentName: 'Terminal',
slot: 'footer'
}
]
};