linkHref
'hash' | 'omit' | (page: number) => string
(optional)

Set linkHref to omit to omit href='#' from the page item <a> tags

Set linkHref to a callback to set each item's href to a url. The callback takes the item's page as a parameter, this allows the generated url to include the page number, example:

<ResponsivePagination
...
href={page => `/results/${page}`}
/>

The default behaviour is to include href='#' in <a> tags