nuel-table
v1.0.6
Published
A simple and customizable table component for React, built with filtering and pagination support.
Downloads
17
Maintainers
Readme
nuel-table
A simple and customizable table component for React, built with filtering and pagination support.
Installation
Install the nuel-table
package using npm:
npm install nuel-table
import Table from 'nuel-table';
const recentTransactions = [
{
MerchantID: '001',
Merchant: 'John',
TransactionID: 'A123',
Amount: 50,
Contact: '1234567890',
Location: 'New York',
Status: 'Completed',
Date: '2024-10-04'
},
// Add more transaction objects as needed
];
<Table data={recentTransactions} maxHeight={400} pagenate={true} />