17 lines
316 B
TypeScript
17 lines
316 B
TypeScript
|
import type { Preview } from "@storybook/react";
|
||
|
import "../styles/globals.css";
|
||
|
|
||
|
const preview: Preview = {
|
||
|
parameters: {
|
||
|
actions: { argTypesRegex: "^on[A-Z].*" },
|
||
|
controls: {
|
||
|
matchers: {
|
||
|
color: /(background|color)$/i,
|
||
|
date: /Date$/,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export default preview;
|