@pnp/spfx-controls-react
Version:
Reusable React controls for SharePoint Framework solutions
20 lines • 584 B
TypeScript
import { ISize } from '@fluentui/react/lib/Utilities';
import { IListProps } from '@fluentui/react/lib/List';
export interface IGridLayoutProps {
/**
* The array of items to display.
*/
items: any[];
/**
* In case you want to override the underlying list
*/
listProps?: Partial<IListProps>;
ariaLabel?: string;
/**
* The method to render each cell item
*/
onRenderGridItem: (item: any, finalSize: ISize, isCompact: boolean) => JSX.Element;
}
export interface IGridLayoutState {
}
//# sourceMappingURL=GridLayout.types.d.ts.map