mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
15 lines
269 B
TypeScript
15 lines
269 B
TypeScript
|
import type { Preview } from "@storybook/react";
|
||
|
import "../styles/output.css";
|
||
|
const preview: Preview = {
|
||
|
parameters: {
|
||
|
controls: {
|
||
|
matchers: {
|
||
|
color: /(background|color)$/i,
|
||
|
date: /Date$/i,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export default preview;
|