Skip to content

Instantly share code, notes, and snippets.

@davidnguyen11
Created February 7, 2018 14:37
Show Gist options
  • Select an option

  • Save davidnguyen11/bb5f98d7e3990099abee8c311a1897b0 to your computer and use it in GitHub Desktop.

Select an option

Save davidnguyen11/bb5f98d7e3990099abee8c311a1897b0 to your computer and use it in GitHub Desktop.
{pages.map(page => {
return (
<button
key={page}
style={currentPage === page ? { backgroundColor: '#fdce09' } : null}
{...getPageItemProps({
pageValue: page,
onPageChange: this.handlePageChange
})}
>
{page}
</button>
);
})}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment