UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

16 lines (15 loc) 545 B
/// <reference types="react" /> import * as React from 'react'; import { ICommandBarItemProps } from 'office-ui-fabric-react/lib/CommandBar'; import './CalloutExample.scss'; export interface ICalloutNestedExampleProps { items: ICommandBarItemProps[]; } export declare class CalloutNestedExample extends React.Component<ICalloutNestedExampleProps, { isCalloutVisible: boolean; }> { private _menuButtonElement; constructor(props: ICalloutNestedExampleProps); render(): JSX.Element; private _onDismiss(ev); }