mirror of
https://github.com/penpot/penpot.git
synced 2025-01-10 08:50:57 -05:00
17 lines
322 B
JavaScript
17 lines
322 B
JavaScript
|
import "../resources/public/css/main.css";
|
||
|
|
||
|
/** @type { import('@storybook/react').Preview } */
|
||
|
const preview = {
|
||
|
parameters: {
|
||
|
actions: { argTypesRegex: "^on[A-Z].*" },
|
||
|
controls: {
|
||
|
matchers: {
|
||
|
color: /(background|color)$/i,
|
||
|
date: /Date$/i,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export default preview;
|