UNPKG

@uifabric/experiments

Version:

Experimental React components for building experiences for Office 365.

15 lines (14 loc) 465 B
/// <reference types="react" /> import * as React from 'react'; import { ITilesGridItem } from '@uifabric/experiments/lib/TilesList'; export interface IBasicItem { color: string; key: string; } export interface ITilesListBasicExampleState { items: ITilesGridItem<IBasicItem>[]; } export declare class TilesListBasicExample extends React.Component<{}, ITilesListBasicExampleState> { constructor(props: {}); render(): JSX.Element; }