mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-20 05:02:37 +08:00
10 lines
215 B
Plaintext
10 lines
215 B
Plaintext
```js
|
|
// .storybook/main.js
|
|
|
|
module.exports = {
|
|
// 👇 Storybook will load all existing stories within the MyStories folder
|
|
stories: ['../packages/MyStories'],
|
|
addons: ['@storybook/addon-essentials'],
|
|
};
|
|
```
|