I am looking at storing a user access token within a React Native application. Initially I have been looking at Redux but instead I noticed that RN has AsyncStorage
, now I am assuming that this in the case of IOS is the equivalent of NSUserDefaults
. I may be wrong.
Would this be a good way to store the access token? I don't really want to go through the process of using Redux if I can help it for simple data storage.