storybook/docs/snippets/common/storybook-manager-render-label-stories.js.mdx
2022-05-12 21:24:41 +01:00

13 lines
246 B
Plaintext

```js
// .storybook/manager.js
import { addons } from '@storybook/addons';
import startCase from 'lodash/startCase';
addons.setConfig({
sidebar: {
renderLabel: ({ name, type }) => (type === 'story' ? name : startCase(name)),
},
});
```