Skip to content

Instantly share code, notes, and snippets.

@amandeepmittal
Created February 9, 2019 12:33
Show Gist options
  • Save amandeepmittal/2bdb710578979acfc7344c18a9ea0ea3 to your computer and use it in GitHub Desktop.
Save amandeepmittal/2bdb710578979acfc7344c18a9ea0ea3 to your computer and use it in GitHub Desktop.
<FlatList
data={this.state.articles}
renderItem={({ item }) => <Article article={item} />}
keyExtractor={item => item.url}
refreshing={this.state.refreshing}
onRefresh={this.handleRefresh}
/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment