UNPKG

pagamio-frontend-commons-lib

Version:

Pagamio library for Frontend reusable components like the form engine and table container

9 lines (8 loc) 291 B
import { type MRT_ColumnDef } from 'mantine-react-table'; import React from 'react'; interface TableDownloadProps<T extends Record<string, any>> { columns: MRT_ColumnDef<T>[]; data: T[]; } declare const TableDownload: React.FC<TableDownloadProps<any>>; export default TableDownload;