You can expand Storybook with add-ons, which allow you to enhance your showcase. Out of the many available ones, we will install three of them and have a quick look at their usage:
- addon-actions lets you see the data received by event handlers to see what would happen, for example, when the user clicks on a component
- addon-notes allows you to add notes to a component, to explain how it works or to give insights on its usage
- addon-knobs lets you dynamically tweak a component's props to see how they change
Since add-ons are quite simple, let's ...