mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
10 lines
207 B
Plaintext
10 lines
207 B
Plaintext
```js
|
|
// .storybook/preview.js
|
|
|
|
export const parameters = {
|
|
options: {
|
|
storySort: (a, b) =>
|
|
a[1].kind === b[1].kind ? 0 : a[1].id.localeCompare(b[1].id, undefined, { numeric: true }),
|
|
},
|
|
};
|
|
``` |