Refactoring Provider setup of Google Auth

This commit is contained in:
Samuel Andert
2023-07-25 09:34:31 +02:00
parent 50b0fca034
commit 44d668d7af
7 changed files with 46 additions and 40 deletions

View File

@ -4,15 +4,16 @@
let componentsData = {
layout: `
grid-template-areas:
"auth",
"login",
"play"
grid-template-rows: 1fr 1fr;
grid-template-rows: auto 1fr 1fr;
`,
children: [
{
id: 'login1',
componentName: 'GoogleAuth',
slot: 'login'
id: 'authsig',
componentName: 'AuthSig',
slot: 'auth'
},
{
id: 'wallet1',
@ -23,6 +24,11 @@
pkpPubKey:
'046da3ba67065fd1e2726242ca01cd4601524893f4aa4b0042578fa6cbec28fa8c9a28eb9f7893932fc09717edc9e1db57e157a21eed346247c1db5a722a01f571'
}
},
{
id: 'login1',
componentName: 'GoogleAuth',
slot: 'login'
}
]
};