@ausbom/pagination

Pagination allows the user to easily navigate between paginated content

Usage no npm install needed!

<script type="module">
  import ausbomPagination from 'https://cdn.skypack.dev/@ausbom/pagination';
</script>

README

@ausbom/pagination

Pagination allows the user to easily navigate between paginated content

Installation

npm install @ausbom/pagination

Usage

import Pagination from '@ausbom/pagination'
import React from 'react'

<Pagination
  onChange={handleChange}
  currentPage={currentPage}
  numPages={10}
  generateLabel={page => `Page ${n}`}
  generateA11yLabel={page => `Page ${n} of 10`}
  generateHref={page => `/page/${n}`}
  nextLabel="Go to next page"
  prevLabel="Go to previous page"
/>