office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
14 lines (13 loc) • 371 B
TypeScript
import * as React from 'react';
export interface IPanelSmallRightExampleState {
showPanel: boolean;
}
export declare class PanelSmallRightExample extends React.Component<{}, IPanelSmallRightExampleState> {
state: {
showPanel: boolean;
};
render(): JSX.Element;
private _onRenderFooterContent;
private _showPanel;
private _hidePanel;
}