@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
10 lines (9 loc) • 306 B
TypeScript
import React from 'react';
import type { TableData } from './Table';
export interface TableDataRendererProps {
data: TableData;
}
export declare function TableDataRenderer({ data }: TableDataRendererProps): React.JSX.Element;
export declare namespace TableDataRenderer {
var displayName: string;
}