Guest User

Untitled

a guest
Dec 7th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. AsyncStorage.multiSet([
  2. ["userId", responseJson.USERID],
  3. ["refcode", responseJson.SUCCESS]
  4. ])
  5.  
  6. AsyncStorage.multiGet(['userId', 'refcode']).then((data) => {
  7. let userId = data[1];
  8. let refcode = data[1];
  9.  
  10.  
  11. });
Add Comment
Please, Sign In to add comment