mirror of
https://github.com/gosticks/plane.git
synced 2025-10-16 12:45:33 +00:00
* chore: global css file added to tailwind config package * chore: tailwind config updated * chore: cn utility function added to propel package * chore: storybook init * fix: format error * chore: code refactor * chore: code refactor * fix: format error * fix: build error
12 lines
217 B
TypeScript
12 lines
217 B
TypeScript
import type { Preview } from "@storybook/react-vite";
|
|
import "@plane/tailwind-config/global.css";
|
|
|
|
const preview: Preview = {
|
|
parameters: {
|
|
controls: {
|
|
matchers: {},
|
|
},
|
|
},
|
|
};
|
|
export default preview;
|