UNPKG

hightable

Version:

A dynamic windowed scrolling table component for react

10 lines (9 loc) 284 B
import { ReactNode } from 'react'; interface Props { children: ReactNode; selected?: boolean; ariaRowIndex: number; title?: string; } export default function Row({ children, selected, ariaRowIndex, title, }: Props): import("react/jsx-runtime").JSX.Element; export {};