1.0.0-alz • Published 2 years ago

react-material-pagination-v4z v1.0.0-alz

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Description

  • React material(v.4) pagination (>= 4.11.3)

Usage

npm install react-material-pagination-v4z --save

Import the module in the place you want to use:

import Pagination from 'react-material-pagination-v4z'

Snippet

simple
    const [page, setPage] = React.useState(1)

    <Pagination
        // className
        totalCount={100}
        // limit={10}
        // labelFirst="|<<"
        // labelLast="Last"
        // sectionNumber={5} // display number of page
        currentPage={page}
        setCurrentPage={setPage}
        // showFirstLast // ={true}
		// showForwardBack // ={false}
    />

    <Pagination
        // className
        totalCount={100}
        // limit={10}
        // labelFirst = "|<<",
        // labelLast = ">>|",
        // labelBack = "<",
        // labelForward = ">",
        currentPage={page}
        setCurrentPage={setPage}
        type="pager"
    />

props

RUN

LIVE EXAMPLE

npm install
npm run dev
npm run start

License

MIT