mantine-entity
Version:
A library combining Mantine, TanStack Query, and Mantine React Table for efficient entity management
10 lines (9 loc) • 612 B
TypeScript
import React from "react";
export declare const renderTableCellValue: (value: any) => string | import("react/jsx-runtime").JSX.Element | import("react/jsx-runtime").JSX.Element[] | null;
export declare const renderCellValue: (value: string) => string | null;
export declare function formatDateTimeFromString(dateString: string, withoutTime?: boolean): string | null;
export declare const transformFormData: (data: any) => Record<string, Record<string, string | React.ReactNode>>;
declare const DynamicTable: ({ data }: {
data: any;
}) => import("react/jsx-runtime").JSX.Element;
export default DynamicTable;