mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 04:41:16 +08:00
13 lines
229 B
Plaintext
13 lines
229 B
Plaintext
```js
|
|
// .storybook/main.js
|
|
|
|
function findStories() {
|
|
// your custom logic returns a list of files
|
|
}
|
|
|
|
module.exports = {
|
|
stories: async (list) => [...list, ...findStories()],
|
|
addons: ['@storybook/addon-essentials'],
|
|
};
|
|
```
|