storybook template

This commit is contained in:
2023-11-15 16:15:18 +01:00
commit 8d36e6cf5d
23 changed files with 10014 additions and 0 deletions

15
.storybook/preview.ts Normal file
View File

@@ -0,0 +1,15 @@
import type { Preview } from '@storybook/react'
import '../src/styles/index.scss'
const preview: Preview = {
parameters: {
actions: { argTypesRegex: '^on[A-Z].*' },
controls: {
matchers: {
color: /(background|color)$/i,
date: /Date$/i,
},
},
},
}
export default preview