storybook/docs/snippets/common/storybook-preview-docs-dark-theme.js.mdx
2020-08-14 21:46:15 +01: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,
},
};
```