office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
15 lines (14 loc) • 471 B
TypeScript
/// <reference types="react" />
import * as React from 'react';
export interface IFocusTrapZoneDialogInPanelExampleState {
hideDialog: boolean;
showPanel: boolean;
}
export default class FocusTrapDialogInPanelExample extends React.Component<{}, IFocusTrapZoneDialogInPanelExampleState> {
constructor(props: {});
render(): JSX.Element;
private _showDialog;
private _closeDialog;
private _onClosePanel;
private _onShowPanel;
}