UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

20 lines (19 loc) 552 B
import * as React from 'react'; export declare type IExampleItem = { name: string; thumbnail: string; description: string; }; export interface IListBasicExampleProps { items: IExampleItem[]; } export interface IListBasicExampleState { filterText?: string; items?: IExampleItem[]; } export declare class ListBasicExample extends React.Component<IListBasicExampleProps, IListBasicExampleState> { constructor(props: IListBasicExampleProps); render(): JSX.Element; private _onFilterChanged; private _onRenderCell; }