UNPKG

@conductionnl/nl-design-system

Version:

NL design system components created by Conduction

9 lines (8 loc) 296 B
import * as React from "react"; import "../../style/table.css"; interface TableProps { columns: Array<Partial<Record<"field" | "headerName" | "renderCell" | "hidden" | "valueFormatter", any>>>; rows: Array<Record<any, any>>; } export declare const Table: React.FC<TableProps>; export {};