import AsyncStorage from '@react-native-async-storage/async-storage'; export const get = (key: string) => { return AsyncStorage.getItem(key); }; export const set = (key: string, value: string) => { AsyncStorage.setItem(key, value).then(); };