Mohammad Asif cf937194cb Removed un-waned things 1. 7 tháng trước cách đây
..
dist cf937194cb Removed un-waned things 1. 7 tháng trước cách đây
README.md cf937194cb Removed un-waned things 1. 7 tháng trước cách đây
jest.config.js cf937194cb Removed un-waned things 1. 7 tháng trước cách đây
package.json cf937194cb Removed un-waned things 1. 7 tháng trước cách đây

README.md

CSF Plugin

The CSF plugin reads CSF files and enriches their content via static analysis. It supports Webpack, Vite, and other bundlers using unplugin.

Source snippets

CSF plugin can add static source snippets to each story. For example:

export const Basic = () => <Button />;

Would be transformed to:

export const Basic = () => <Button />;
Basic.parameters = {
  storySource: {
    source: '() => <Button />',
  },
  ...Basic.parameters,
};

This allows @storybook/addon-docs to display the static source snippet.