UNPKG

@uifabric/experiments

Version:

Experimental React components for building experiences for Office 365.

15 lines (14 loc) 437 B
/// <reference types="react" /> import * as React from 'react'; export interface IDialogExampleProps { buttonText: string; } export interface IDialogExampleState { hideDialog: boolean; } export declare class DialogExample extends React.Component<IDialogExampleProps, IDialogExampleState> { constructor(props: IDialogExampleProps); render(): JSX.Element; private _showDialog; private _closeDialog; }