UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

15 lines (14 loc) 530 B
import * as React from 'react'; import './FocusTrapZone.Box.Example.scss'; export interface IBoxNoClickExampleExampleState { isToggled: boolean; } export default class BoxNoClickExample extends React.Component<React.HTMLAttributes<HTMLDivElement>, IBoxNoClickExampleExampleState> { private _toggle; constructor(props: any); render(): JSX.Element; private _internalContents(); private _onButtonClickHandler(); private _onExitButtonClickHandler(); private _onFocusTrapZoneToggleChanged(isToggled); }