UNPKG

@salesforce/design-system-react

Version:

Salesforce Lightning Design System for React

23 lines 866 B
import React from 'react'; import { storiesOf } from '@storybook/react'; import { action } from '@storybook/addon-actions'; import IconSettings from '../../icon-settings'; import { DOCKED_COMPOSER } from '../../../utilities/constants'; import Example from '../__examples__/base'; import Minimized from '../__examples__/minimized'; storiesOf(DOCKED_COMPOSER, module).addDecorator(function (getStory) { return /*#__PURE__*/React.createElement("div", { className: "slds-p-around_medium" }, /*#__PURE__*/React.createElement(IconSettings, { iconPath: "/assets/icons" }, getStory())); }).add('Default', function () { return /*#__PURE__*/React.createElement(Example, { action: action }); }).add('Minimized', function () { return /*#__PURE__*/React.createElement(Minimized, { action: action }); }); //# sourceMappingURL=storybook-stories.js.map