UNPKG

@pagamio/frontend-commons-lib

Version:

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

12 lines (11 loc) 283 B
import React from 'react'; interface TableDownloadProps<T> { columns: { header: string; accessor: keyof T; }[]; data: T[]; } declare const TableDownload: React.FC<TableDownloadProps<any>>; export default TableDownload; export type { TableDownloadProps };