paginated-table-react-pkg
v1.0.0
Published
React paginated table with search and sorting
Downloads
3
Readme
Pagintated Table For React
A paginated table component for React project. Display data in a paginated table. With this package you can search through your data and sort your data.
Authors
Features
- Table layout with custom headers
- Pagination
- Select number of rows per page
- Search through data
Installation
Prerequisites
Installation
Install paginated-table-react-pkg with npm
npm install paginated-table-react-pkg
Configuration
Package is using TailwindCSS. Specify in Tailwind config file :
content: [
"./node_modules/paginated-table-react-pkg/**/*.{html,js, jsx}"
],
Usage/Examples
import { Table } from "paginated-table-react-pkg";
function App() {
<Table data={data} tableHeaders={tableHeaders} />;
}