preview.ts 284 B

123456789101112131415
  1. import type { Preview } from "@storybook/react";
  2. const preview: Preview = {
  3. parameters: {
  4. actions: { argTypesRegex: "^on[A-Z].*" },
  5. controls: {
  6. matchers: {
  7. color: /(background|color)$/i,
  8. date: /Date$/,
  9. },
  10. },
  11. },
  12. };
  13. export default preview;