UNPKG

@spratch/whtable

Version:

A typescript react accessible table component for WealthHealth

11 lines (10 loc) 286 B
type WHTableProps = { columnsTitles: { id: string; title: string; }[]; label: string; items: Record<string, string>[]; }; export default function WHTable({ columnsTitles, label, items }: WHTableProps): import("react/jsx-runtime").JSX.Element; export {};