12345678910111213141516 |
- import type { Preview } from "@storybook/react";
- import "../src/app/globals.css";
- const preview: Preview = {
- parameters: {
- controls: {
- matchers: {
- color: /(background|color)$/i,
- date: /Date$/i,
- },
- },
- },
- };
- export default preview;
|