preview.ts 273 B

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