async-storage.ts 248 B

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