Skip to content

Files

Latest commit

05966e8 · Apr 9, 2025

History

History

storybook-addon

@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,
};