import { AsyncStorage } from 'react-native'; code example
Example 1: how to install asyncstorage in react native
npm i @react-native-community/async-storage
Example 2: fetch data from asyncstorage react native
let user = await AsyncStorage. getItem('user');
let parsed = JSON. parse(user);