UNPKG

react-url-table

Version:

Smart and flexible table component built with React and for React projects. based on React16 hooks and mobx-react-lite

10 lines (9 loc) 257 B
import React from 'react'; import { IRecord } from "../../@typings/types"; interface IProps { record: IRecord; rowIndex: number; } declare function Row(props: IProps): React.ReactElement; declare const _default: typeof Row; export default _default;