You can use React Native AsyncStorage to store data on the device’s local storage.
import { AsyncStorage } from 'react-native'
Use this to save data.
AsyncStorage.setItem('key', 'value');
AsyncStorage only accepts a value as string , so you may need to use stringify()AsyncStorage before setting it.
And to retrieve data use
AsyncStorage.getItem('your key');