react-essentials-kits
v0.1.5
Published
A reusable set of essential React components including pagination and more.
Downloads
20
Maintainers
Readme
📦 react-essentials-kits
A reusable React + TypeScript component library.
🚀 Installation
npm install react-essentials-kits
# or
yarn add react-essentials-kits
📚 Usage
import { Pagination } from 'react-essentials-kits';
function MyComponent() {
return (
<Pagination
currentPage={1}
totalCount={100}
pageSize={10}
onPageChange={(page) => console.log(page)}
/>
);
}