mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 02:21:07 +08:00
9 lines
214 B
Plaintext
9 lines
214 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'],
|
|
};
|
|
``` |