0.2.3 • Published 18 days ago

@lg-tools/storybook-addon v0.2.3

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
18 days ago

@lg-tools/storybook-addon

Storybook addon to share configuration in LeafyGreen repositories.

Usage

Install this package, and consume it in your .storybook/ config files.

// .storybook/main.ts
export default {
  addons: ['@lg-tools/storybook-addon'],
  framework: {
    name: '@storybook/react-webpack5',
    options: {
      fastRefresh: true,
      strictMode: true,
    },
  },
};

Most parameters preview.ts will be automatically populated by the addon. However you may want to customize certain things like section ordering:

// .storybook/preview.js
const parameters = {
  options: {
    storySort: {
      method: 'alphabetical',
      order: [
        // ... section headers
      ],
    },
  },
};

export default {
  parameters,
};