office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
13 lines (12 loc) • 335 B
TypeScript
import { BaseComponent } from 'office-ui-fabric-react/lib/Utilities';
interface ILayerBasicExampleState {
showLayer: boolean;
}
export declare class LayerBasicExample extends BaseComponent<{}, ILayerBasicExampleState> {
state: {
showLayer: boolean;
};
render(): JSX.Element;
private _onChange;
}
export {};