mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 05:51:48 +08:00
13 lines
179 B
Plaintext
13 lines
179 B
Plaintext
```js
|
|
// .storybook/preview.js
|
|
|
|
import { themes } from '@storybook/theming';
|
|
|
|
// or global addParameters
|
|
export const parameters = {
|
|
docs: {
|
|
theme: themes.dark,
|
|
},
|
|
};
|
|
```
|