Skip to content

Instantly share code, notes, and snippets.

@ilkay-alti
Created September 30, 2022 20:03
Show Gist options
  • Save ilkay-alti/2ded9f11ff5372d0fc01176cbabb7907 to your computer and use it in GitHub Desktop.
Save ilkay-alti/2ded9f11ff5372d0fc01176cbabb7907 to your computer and use it in GitHub Desktop.
// React Native component
const removeUser = async () => {
try {
await AsyncStorage.removeItem("user");
} catch (error) {
console.log(error);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment