storybook/docs/snippets/common/storybook-preview-sort-function.js.mdx
2020-08-07 17:05:17 +01:00

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 }),
},
};
```