UNPKG

hightable

Version:

A dynamic windowed scrolling table component for react

9 lines (8 loc) 368 B
import type { ReactNode } from 'react'; import type { HighTableProps } from '../../types.js'; type Props = Pick<HighTableProps, 'className' | 'maxRowNumber' | 'styled'> & { /** Child components */ children: ReactNode; }; export default function Wrapper({ children, className, maxRowNumber, styled }: Props): import("react/jsx-runtime").JSX.Element; export {};