storybook-addon-valkyrie-theme/.storybook/preview.ts
2024-10-18 23:01:24 +13:00

18 lines
No EOL
333 B
TypeScript

import type { Preview } from "@storybook/react";
const preview: Preview = {
parameters: {
backgrounds: {
default: "light",
},
actions: { argTypesRegex: "^on[A-Z].*" },
controls: {
matchers: {
color: /(background|color)$/i,
date: /Date$/,
},
},
},
};
export default preview;