mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 09:21:05 +08:00
27 lines
839 B
JavaScript
27 lines
839 B
JavaScript
import { load, addParameters, addDecorator } from '@storybook/react';
|
|
import { create } from '@storybook/theming';
|
|
import { withA11y } from '@storybook/addon-a11y';
|
|
|
|
addDecorator(withA11y);
|
|
addParameters({
|
|
options: {
|
|
isFullscreen: false,
|
|
showAddonsPanel: true,
|
|
showSearchBox: false,
|
|
panelPosition: 'right',
|
|
hierarchySeparator: /\./,
|
|
hierarchyRootSeparator: /\|/,
|
|
enableShortcuts: true,
|
|
theme: create({
|
|
base: 'light',
|
|
brandTitle: 'CRA Kitchen Sink',
|
|
brandUrl: 'https://github.com/storybookjs/storybook/tree/master/examples/cra-kitchen-sink',
|
|
gridCellSize: 12,
|
|
}),
|
|
storySort: (a, b) => a[1].id.localeCompare(b[1].id),
|
|
},
|
|
});
|
|
|
|
load(require.context('../src/stories', true, /\.stories\.js$/), module);
|
|
load(require.context('../src/stories', true, /\.stories\.mdx$/), module);
|