Files
clan-core/pkgs/clan-app/ui/.storybook/preview.ts
Brian McGee b8604d334b feat(ui): prep V2
Preparation for rebuilding the UI with V2 components.
2025-07-08 11:41:33 +01:00

22 lines
474 B
TypeScript

import type { Preview } from "@kachurun/storybook-solid-vite";
import "../src/index.css";
import "./preview.css";
export const preview: Preview = {
tags: ["autodocs"],
parameters: {
docs: { toc: true },
// automatically create action args for all props that start with "on"
actions: { argTypesRegex: "^on.*" },
controls: {
matchers: {
color: /(background|color)$/i,
date: /Date$/,
},
},
},
};
export default preview;