UNPKG

grid-table

Version:

Custom react table based on typescript, grid and flex

9 lines (8 loc) 298 B
/// <reference types="react" /> import { RowProps, ExternalTProps } from '../ITable'; import './row.scss'; declare function Row<T extends ExternalTProps>(props: RowProps<T>): JSX.Element; declare namespace Row { var HoverButton: typeof import("../Button/Button").default; } export default Row;