Skip to content

Instantly share code, notes, and snippets.

@ilkay-alti
Created September 30, 2022 19:52
Show Gist options
  • Save ilkay-alti/85c94112fdfa7fcbad0c1cdb8e86fa97 to your computer and use it in GitHub Desktop.
Save ilkay-alti/85c94112fdfa7fcbad0c1cdb8e86fa97 to your computer and use it in GitHub Desktop.
ReactNative.js
// React Native component
const getUser = async () => {
try {
const savedUser = await AsyncStorage.getItem("user");
const currentUser = JSON.parse(savedUser);
console.log(currentUser);
} catch (error) {
console.log(error);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment