Michael Shilman 8aba2f5e2a
Merge pull request #14899 from storybookjs/14579-undefined-inputs
Controls: Update all controls to have explicit handling for `undefined`
2021-05-18 14:54:00 +08:00
..
2019-10-24 21:57:05 +00:00
2021-05-14 15:21:52 +10:00
2020-10-14 16:24:26 +01:00
2021-02-03 22:34:44 +08:00
2020-08-10 22:59:35 +10:00
2021-02-03 22:34:44 +08:00

Storybook Addon Actions

Storybook Addon Actions can be used to display data received by event handlers in Storybook.

Framework Support

Screenshot

Installation

Actions is part of essentials and so is installed in all new Storybooks by default. If you need to add it to your Storybook, you can run:

npm i -D @storybook/addon-actions

Then, add following content to .storybook/main.js:

module.exports = {
  addons: ['@storybook/addon-actions'],
};

Usage

The basic usage is documented in the documentation. For legacy usage, see the advanced README.