fbredius/storybook

View on GitHub
docs/snippets/common/storybook-manager-dark-theme.js.mdx

Summary

Maintainability
Test Coverage
```js
// .storybook/manager.js

import { addons } from '@storybook/addons';
import { themes } from '@storybook/theming';

addons.setConfig({
  theme: themes.dark,
});
```