mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:21:06 +08:00
13 lines
246 B
Plaintext
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)),
|
|
},
|
|
});
|
|
``` |