UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

13 lines (12 loc) 337 B
import * as React from 'react'; export declare type IExampleItem = { name: string; thumbnail: string; }; export interface IListGhostingExampleProps { items: IExampleItem[]; } export declare class ListGhostingExample extends React.Component<IListGhostingExampleProps> { render(): JSX.Element; private _onRenderCell; }