mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
e99a7accec
* Add storybbok integration for UI package * Exclude stories from tailwind config * Update gitignore * chore: disable lint stage --------- Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
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;
|