Storybook Addon Notes
Storybook Addon Notes allows you to write notes for your stories in Storybook.
This addon works with Storybook for:
React.
Getting Started
npm i --save-dev @storybook/addon-notes
Then create a file called addons.js
in your storybook config.
Add following content to it:
import '@storybook/addon-notes/register';
Then write your stories like this:
import { storiesOf } from '@storybook/react';
import { addonNotes } from '@storybook/addon-notes';
import Component from './Component';
storiesOf('Component', module)
.add('with some emoji', addonNotes({ notes: 'A very simple component'})(() => <Component></Component>));