UNPKG

mui-datatables-updated

Version:

MUI Datatable library inspired by the gregnb/mui-datatables project, featuring an up-to-date implementation with Typescript Support.

12 lines (11 loc) 286 B
import { HeadCell } from "../components/TableHead"; export interface Data { id: number; calories: number; carbs: number; fat: number; name: string; protein: number; } export declare const rows: Data[]; export declare const headCells: HeadCell<typeof rows[0]>[];