https://github.com/tanvirstreame/toodle-pagination
https://github.com/tanvirstreame/toodle-pagination
npm-package pagination reactjs typescript
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tanvirstreame/toodle-pagination
- Owner: tanvirstreame
- Created: 2022-12-03T19:22:42.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T20:23:51.000Z (over 2 years ago)
- Last Synced: 2025-03-03T23:07:02.942Z (3 months ago)
- Topics: npm-package, pagination, reactjs, typescript
- Language: TypeScript
- Homepage:
- Size: 352 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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;
```