mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +08:00
12 lines
229 B
JavaScript
12 lines
229 B
JavaScript
export const parameters = {
|
|
options: {
|
|
storySort: (a, b) =>
|
|
a.title === b.title ? 0 : a.id.localeCompare(b.id, undefined, { numeric: true }),
|
|
},
|
|
docs: {
|
|
source: {
|
|
excludeDecorators: true,
|
|
},
|
|
},
|
|
};
|