@gpa-gemstone/react-interactive
Version:
Interactive UI Components for GPA products
14 lines (13 loc) • 333 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: (props: React.PropsWithChildren<IProps>) => JSX.Element;
export default LayoutGrid;