An open API service indexing awesome lists of open source software.

https://github.com/tanvirstreame/toodle-pagination


https://github.com/tanvirstreame/toodle-pagination

npm-package pagination reactjs typescript

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Toodle Pagination

## Table of Contents

* [Installation](#installation)
* [Example](#example)

## Installation

To install, you can use [npm](https://npmjs.org/) or [yarn](https://yarnpkg.com):

$ npm install toodle-pagination
$ yarn add toodle-pagination

## Example

Here is a simple example of toodle-pagination

```jsx
import Pagination from "toodle-pagination";

const App = () => {
const handlePageNumber = (value) => {
console.log("value", value);
}

return (




);
}

export default App;

```