mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 23:01:16 +08:00
9 lines
210 B
JavaScript
9 lines
210 B
JavaScript
import { addons } from '@storybook/addons';
|
|
import startCase from 'lodash/startCase';
|
|
|
|
addons.setConfig({
|
|
sidebar: {
|
|
renderLabel: ({ name, type }) => (type === 'story' ? name : startCase(name)),
|
|
},
|
|
});
|