UNPKG

@ahmedkira/custom-view

Version:

A customizable React component for displaying field data in a grid layout

9 lines (8 loc) 259 B
import React from 'react'; type FieldProps = any; interface CustomViewProps { values: Record<string, any>; tableProps: FieldProps[]; } declare function CustomView({ values, tableProps }: CustomViewProps): React.JSX.Element; export default CustomView;