I used to develop in android previously and i used to used SharePreference for storing user tokens. Is there anything such available in react native for both ios and android? >
As an addition to the other answer, you might want to consider encrypting the token on the user device when storing it.
So in addition to storing it via AsyncStorage you might want to use something like: react-native-keychain to encrypt it on the device.