mui-simple
Version:
Override mui-v7 components to simplify usage
30 lines • 721 B
TypeScript
import { TableColumn } from '../Table.desc';
export declare const FITNESS_COLUMNS: TableColumn[];
export declare const FITNESS_DATA: {
id: string;
name: string;
calories: number;
fat: number;
carbs: number;
protein: number;
}[];
export declare const PERSON_COLUMNS: TableColumn[];
export declare const PERSON_DATA: {
avatar: string;
age: number;
birthday: number;
stars: number;
name: string;
description: string;
}[];
export declare const OBJECT_PERSON_COLUMNS: TableColumn[];
export declare const OBJECT_PERSON_DATA: {
name: string;
static: {
stars: number;
};
address: {
city: string;
};
}[];
//# sourceMappingURL=Table.mocks.d.ts.map