@fluentui/react
Version:
Reusable React components for building web experiences.
10 lines (9 loc) • 332 B
TypeScript
import * as React from 'react';
import type { IOverlayProps } from './Overlay.types';
export declare class OverlayBase extends React.Component<IOverlayProps, {}> {
private _allowTouchBodyScroll;
constructor(props: IOverlayProps);
componentDidMount(): void;
componentWillUnmount(): void;
render(): JSX.Element;
}