eduproj2/.storybook/preview.ts
Michael Zhang 1711557f4c initial
2023-08-01 18:38:06 -04:00

15 lines
284 B
TypeScript

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