storybook/docs/snippets/common/storybook-preview-docs-dark-theme.js.mdx
2023-03-02 22:01:15 +00:00

14 lines
168 B
Plaintext

```js
// .storybook/preview.js
import { themes } from '@storybook/theming';
export default {
parameters: {
docs: {
theme: themes.dark,
},
},
};
```