misskey-tools/packages/frontend/.storybook/preview.ts

16 lines
284 B
TypeScript
Raw Normal View History

2023-04-25 01:45:57 +09:00
import type { Preview } from "@storybook/react";
const preview: Preview = {
parameters: {
actions: { argTypesRegex: "^on[A-Z].*" },
controls: {
matchers: {
color: /(background|color)$/i,
date: /Date$/,
},
},
},
};
export default preview;