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