UNPKG

@stellartrack/custom-data-table

Version:

A high-performance virtualized React data table with Excel export and filtering

22 lines (15 loc) 527 B
# @stellartrack/custom-data-table A high-performance virtualized data table component for React with built-in search, export to Excel, and adaptive column sizing. ## Installation ```bash npm install @stellartrack/custom-data-table ``` ## Usage ```jsx import { CustomDataTable } from "@stellartrack/custom-data-table"; import "@stellartrack/custom-data-table/styles/CustomDataTable.css"; <CustomDataTable data={[{ name: "John", age: 25 }]} columns={[{ name: "Name", key: "name" }, { name: "Age", key: "age" }]} /> ```