office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
13 lines (12 loc) • 389 B
TypeScript
import * as React from 'react';
import './CalloutExample.scss';
export interface ICalloutNestedExampleState {
isCalloutVisible: boolean;
}
export declare class CalloutNestedExample extends React.Component<{}, ICalloutNestedExampleState> {
state: ICalloutNestedExampleState;
private _menuButtonElement;
private _titleId;
render(): JSX.Element;
private _onDismiss;
}