maxGraph/packages/html/.storybook/preview.js

22 lines
328 B
JavaScript
Raw Normal View History

export const parameters = {
actions: { argTypesRegex: "^on[A-Z].*" },
controls: {
matchers: {
color: /(background|color)$/i,
date: /Date$/,
},
},
}
export const defaultArgTypes = {
width: {
type: 'number',
defaultValue: 800
},
height: {
type: 'number',
defaultValue: 600
}
};