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