@uifabric/experiments
Version:
Experimental React components for building experiences for Office 365.
11 lines (10 loc) • 368 B
TypeScript
/// <reference types="react" />
import * as React from 'react';
export interface ICollapsibleSectionControlledExampleState {
collapsed: boolean;
clicks: number;
}
export declare class CollapsibleSectionControlledExample extends React.Component<{}, ICollapsibleSectionControlledExampleState> {
constructor(props: {});
render(): JSX.Element;
}