office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
14 lines (13 loc) • 373 B
TypeScript
import * as React from 'react';
export interface IListGridExampleProps {
items: any[];
}
export declare class ListGridExample extends React.Component<IListGridExampleProps> {
private _columnCount;
private _columnWidth;
private _rowHeight;
render(): JSX.Element;
private _getItemCountForPage;
private _getPageHeight;
private _onRenderCell;
}