mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 11:11:53 +08:00
10 lines
216 B
Markdown
10 lines
216 B
Markdown
```js filename=".storybook/manager.js" renderer="common" language="js"
|
|
import { addons } from '@storybook/manager-api';
|
|
import { themes } from '@storybook/theming';
|
|
|
|
addons.setConfig({
|
|
theme: themes.dark,
|
|
});
|
|
```
|
|
|