mirror of
https://github.com/ershisan99/flashcards-example-project.git
synced 2025-12-16 12:33:18 +00:00
20 lines
388 B
TypeScript
20 lines
388 B
TypeScript
import '@fontsource/roboto/400.css'
|
|
import '@fontsource/roboto/700.css'
|
|
import '../src/styles/index.scss'
|
|
|
|
import type { Preview } from '@storybook/react'
|
|
|
|
const preview: Preview = {
|
|
parameters: {
|
|
actions: { argTypesRegex: '^on[A-Z].*' },
|
|
controls: {
|
|
matchers: {
|
|
color: /(background|color)$/i,
|
|
date: /Date$/,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
export default preview
|