17 lines
314 B
TypeScript
17 lines
314 B
TypeScript
import type { Preview } from '@storybook/react'
|
|
|
|
import '../styles/globals.scss'
|
|
|
|
const preview: Preview = {
|
|
parameters: {
|
|
actions: { argTypesRegex: '^on[A-Z].*' },
|
|
controls: {
|
|
matchers: {
|
|
color: /(background|color)$/i,
|
|
date: /Date$/,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
export default preview
|