2019-06-24 00:29:00 +08:00

11 lines
298 B
JavaScript

import { load, addParameters } from '@storybook/react';
import { create } from '@storybook/theming/create';
addParameters({
options: {
theme: create({ colorPrimary: 'hotpink', colorSecondary: 'orangered' }),
},
});
load(require.context('../src/stories', true, /\.stories\.js$/), module);