Update home screen.

This commit is contained in:
2024-10-10 13:02:09 -05:00
parent fb0d89eba8
commit 38f073c5ac
8 changed files with 167 additions and 91 deletions

View File

@ -1,12 +1,5 @@
import * as SecureStore from 'expo-secure-store';
type UserData = {
appleId: string;
appleEmail: string;
fullName: string;
pushToken: string;
};
export const saveUserData = async (userData: any) => {
try {
await SecureStore.setItemAsync('userData', JSON.stringify(userData));