Skip to content

Instantly share code, notes, and snippets.

@marc-morris
Created February 3, 2020 23:05
Show Gist options
  • Save marc-morris/eed4a1fc92d60605c1bdfb977eea26c9 to your computer and use it in GitHub Desktop.
Save marc-morris/eed4a1fc92d60605c1bdfb977eea26c9 to your computer and use it in GitHub Desktop.
semantic pagination
const [pageNumber, setPageNumber] = useState(1);
<Pagination activePage={pageNumber} onPageChange={(e, { activePage }) => setPageNumber(activePage)} totalPages={pageTotal} />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment