storybook/docs/snippets/common/storybook-config-layout.js.mdx
2020-08-09 01:41:24 +01:00

19 lines
358 B
Plaintext

```js
// .storybook/manager.js
import { addons } from '@storybook/addons';
addons.setConfig({
isFullscreen: false,
showNav: true,
showPanel: true,
panelPosition: 'bottom',
sidebarAnimations: true,
enableShortcuts: true,
isToolshown: true,
theme: undefined,
selectedPanel: undefined,
initialActive: 'sidebar',
showRoots: false,
});
```