UNPKG

fixed-react-data-grid-custom

Version:

Excel-like grid component built with React, with editors, keyboard navigation, copy & paste, and the like

7 lines (6 loc) 200 B
import React from 'react'; export interface RowsContainerProps { id: string; children: React.ReactNode; } export default function RowsContainer({ children }: RowsContainerProps): JSX.Element;