@gpa-gemstone/react-interactive
Version:
Interactive UI Components for GPA products
14 lines (13 loc) • 319 B
TypeScript
import React from 'react';
interface IProps {
/**
* Maximum rows to display without scrolling
*/
RowsPerPage: number;
/**
* Optional maximum number of columns per row
*/
ColMax?: number;
}
declare const LayoutGrid: React.FC<React.PropsWithChildren<IProps>>;
export default LayoutGrid;