office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
12 lines (11 loc) • 410 B
TypeScript
/// <reference types="react" />
import * as React from 'react';
import './List.Ghosting.Example.scss';
export interface IListGhostingExampleProps {
items: any[];
}
export declare class ListGhostingExample extends React.Component<IListGhostingExampleProps, {}> {
constructor(props: IListGhostingExampleProps);
render(): JSX.Element;
private _onRenderCell(item, index, isScrolling);
}