storybook/docs/snippets/common/storybook-preview-docs-dark-theme.js.mdx
2020-10-07 12:23:34 +08:00

12 lines
178 B
Plaintext

```js
// .storybook/preview.js
import { themes } from '@storybook/theming';
// or global addParameters
export const parameters = {
docs: {
theme: themes.dark,
},
};
```