mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 02:41:08 +08:00
26 lines
765 B
JavaScript
26 lines
765 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);
|