storybook/docs/snippets/common/my-addon-storybook-registration.js.mdx
jonniebigodes 59909eeebd
Update docs/snippets/common/my-addon-storybook-registration.js.mdx
Co-authored-by: Michael Shilman <shilman@users.noreply.github.com>
2020-12-05 02:39:35 +00:00

14 lines
258 B
Plaintext

```js
// /my-addon/.storybook/main.js
module.exports = {
stories: [],
addons: [
"@storybook/addon-links",
"@storybook/addon-essentials",
"@storybook/preset-create-react-app",
"../src/preset.js" //👈 Our addon registered here
]
}
```