mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-08 06:35:42 +00:00
13 lines
405 B
TypeScript
13 lines
405 B
TypeScript
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";
|