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