mirror of
https://github.com/makeplane/plane.git
synced 2025-12-19 13:19:31 +01: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;
|