office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
13 lines (12 loc) • 403 B
TypeScript
import * as React from 'react';
export interface IDialogTopOffsetFixedExampleState {
hideDialog: boolean;
optionSelected: string;
}
export declare class DialogTopOffsetFixedExample extends React.Component<{}, IDialogTopOffsetFixedExampleState> {
state: IDialogTopOffsetFixedExampleState;
render(): JSX.Element;
private _onChange;
private _showDialog;
private _closeDialog;
}