UNPKG

hightable

Version:

A dynamic windowed scrolling table component for react

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