UNPKG

@uifabric/experiments

Version:

Experimental React components for building experiences for Office 365.

11 lines (10 loc) 368 B
/// <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; }