Skip to content

Instantly share code, notes, and snippets.

@minmaxdata
Created August 4, 2018 22:24
Show Gist options
  • Save minmaxdata/7cc718e2ee7893fff1a7955887aeaedd to your computer and use it in GitHub Desktop.
Save minmaxdata/7cc718e2ee7893fff1a7955887aeaedd to your computer and use it in GitHub Desktop.
Await Async Example
loadFlashCards = async () => {
const value = await AsyncStorage.getItem('flashcards');
if (value !== null){
this.setState({
flashcards: JSON.parse(value)
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment