2021-04-15 04:09:10 +00:00
|
|
|
|
|
|
|
export const parameters = {
|
|
|
|
actions: { argTypesRegex: "^on[A-Z].*" },
|
|
|
|
controls: {
|
|
|
|
matchers: {
|
|
|
|
color: /(background|color)$/i,
|
|
|
|
date: /Date$/,
|
|
|
|
},
|
|
|
|
},
|
2021-04-20 12:22:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export const defaultArgTypes = {
|
|
|
|
width: {
|
|
|
|
type: 'number',
|
|
|
|
defaultValue: 800
|
|
|
|
},
|
|
|
|
height: {
|
|
|
|
type: 'number',
|
|
|
|
defaultValue: 600
|
|
|
|
}
|
|
|
|
};
|