mirror of
https://github.com/ershisan99/bundlers-demo.git
synced 2025-12-16 20:49:27 +00:00
16 lines
315 B
TypeScript
16 lines
315 B
TypeScript
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
|