import type { Preview } from '@storybook/react';

const preview: Preview = {
  parameters: {
    docs: {
      source: {
        type: 'code'
      }
    },
    actions: { argTypesRegex: '^on[A-Z].*' },
    controls: {
      matchers: {
        color: /(background|color)$/i,
        date: /Date$/i,
      },
    },
  },
};

export default preview;
