feat(data-table): Introduce comprehensive DataTable component with full feature set

This commit is contained in:
ghost2023
2026-05-19 16:50:01 +03:00
parent 4085e856e3
commit 634747640a
7 changed files with 399 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
export { DataTableError } from "./error";
export { DataTableSkeleton } from "./skeleton";
export { DataTableFooter, type DataTableFooterOptions } from "./footer";
export type {
DataTableProps,
DataTablePagination,
DataTableFooterProps,
DataTableFooterComponent,
} from "./types";
export { usePagination } from "./hooks";
export { DataTable } from "./table";
export * from "@tanstack/react-table";