hightable
Version:
A dynamic windowed scrolling table component for react
11 lines (10 loc) • 319 B
TypeScript
import { 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 {};