preview.ts 275 B

1234567891011121314
  1. import type { Preview } from "@storybook/react";
  2. const preview: Preview = {
  3. parameters: {
  4. controls: {
  5. matchers: {
  6. color: /(background|color)$/i,
  7. date: /Date$/i
  8. }
  9. }
  10. }
  11. };
  12. export default preview;