Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
|
raw
history blame
651 Bytes

DocsExample

This component is used to implement a skeleton for components examples which are generally showcased in the devdocs.

How to use

import DocsExample from 'calypso/devdocs/design/docs-example';

function render() {
    return (
        <DocsExample
            usageStats={ this.props.usageStats }
            toggleHandler={ this.toggleMyComponent }
            toggleText={ toggleText }
        >
            { this.renderExamples() }
        </DocsExample>
    );
}

Props

  • usageStats: (object) An object containing the usage stats e.g. { count: 10 }.
  • toggleHandler: (func) A function to toggle the example state.
  • toggleText: (string) Text for the toggle button.