UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

16 lines (15 loc) 444 B
import * as React from 'react'; export interface IDialogBasicExampleState { hideDialog: boolean; isDraggable: boolean; } export declare class DialogBasicExample extends React.Component<{}, IDialogBasicExampleState> { state: IDialogBasicExampleState; private _labelId; private _subTextId; private _dragOptions; render(): JSX.Element; private _showDialog; private _closeDialog; private _toggleDraggable; }