UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

18 lines (17 loc) 589 B
/// <reference types="react" /> import * as React from 'react'; import './List.Grid.Example.scss'; export interface IListGridExampleProps { items: any[]; } export declare class ListGridExample extends React.Component<IListGridExampleProps> { private _positions; private _columnCount; private _columnWidth; private _rowHeight; constructor(props: IListGridExampleProps); render(): JSX.Element; private _getItemCountForPage(itemIndex, surfaceRect); private _getPageHeight(itemIndex, surfaceRect); private _onRenderCell(item, index); }