UNPKG

react-data-grid

Version:

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

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