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