UNPKG

react-smartgridmaster

Version:

React-SmartGridMaster: Empower your React applications with intelligent table management using React-SmartGridMaster. This versatile package offers advanced functionalities for creating dynamic and responsive grids. Seamlessly integrate smart filtering, s

15 lines (14 loc) 366 B
import React from "react"; interface DataRow { [key: string]: any; } interface SmartGridMasterProps { data: DataRow[]; sortingEnabled?: boolean; filteringEnabled?: boolean; searchingEnabled?: boolean; itemsPerPage?: number; tableColor?: string; } declare const SmartGridMaster: React.FC<SmartGridMasterProps>; export { SmartGridMaster };