react-url-table
Version:
Smart and flexible table component built with React and for React projects. based on React16 hooks and mobx-react-lite
13 lines (12 loc) • 366 B
TypeScript
/// <reference types="react" />
import { IRecord } from "../../@typings/types";
import FieldModel from "../../store/models/field";
interface IProps {
record: IRecord;
rowIndex: number;
field: FieldModel;
editable: boolean | undefined;
}
declare function Cell(props: IProps): JSX.Element;
declare const _default: typeof Cell;
export default _default;