@uifabric/experiments
Version:
Experimental React components for building experiences for Office 365.
12 lines (11 loc) • 410 B
TypeScript
/// <reference types="react" />
import * as React from 'react';
import { IComponentDemoPageProps } from '@uifabric/example-app-base';
export interface ITilesListPageState {
size: 'small' | 'large';
}
export declare class TilesListPage extends React.Component<IComponentDemoPageProps, ITilesListPageState> {
constructor(props: {});
render(): JSX.Element;
private _onIsLargeChanged;
}