UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

15 lines (14 loc) 446 B
/// <reference types="react" /> import * as React from 'react'; import './Dialog.Basic.Example.scss'; export interface IDialogBasicExampleState { hideDialog: boolean; } export declare class DialogBasicExample extends React.Component<{}, IDialogBasicExampleState> { state: IDialogBasicExampleState; private _labelId; private _subTextId; render(): JSX.Element; private _showDialog; private _closeDialog; }