UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

17 lines (16 loc) 450 B
import * as React from 'react'; export interface IPanelPreventDefaultExampleState { showPanel: boolean; allowEsc: boolean; } export declare class PanelPreventDefaultExample extends React.Component<{}, IPanelPreventDefaultExampleState> { state: { showPanel: boolean; allowEsc: boolean; }; render(): JSX.Element; private _onKeyDown; private _toggleAllowEsc; private _hidePanel; private _showPanel; }