Initial commit from Create Next App

This commit is contained in:
2020-10-25 16:16:56 +00:00
commit c0202bdaf8
15 changed files with 8452 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
export const mapUserData = (user) => {
const { uid, email, xa, ya } = user
return {
id: uid,
email,
token: xa || ya,
}
}