Skip to content

Instantly share code, notes, and snippets.

@ilkay-alti
Created September 30, 2022 19:56
Show Gist options
  • Save ilkay-alti/5d7d539c5409a0cbc6e608d00277d9d4 to your computer and use it in GitHub Desktop.
Save ilkay-alti/5d7d539c5409a0cbc6e608d00277d9d4 to your computer and use it in GitHub Desktop.
// React Native component
const value = {
name: "Innocent"
};
const mergeUser = async () => {
try {
await AsyncStorage.mergeItem("user", JSON.parse(value));
} catch (error) {
console.log(error);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment