mirror of
https://github.com/ershisan99/inctagram-live-2024-08-30.git
synced 2025-12-16 20:59:29 +00:00
18 lines
341 B
TypeScript
18 lines
341 B
TypeScript
import type { Preview } from '@storybook/react'
|
|
import '@fontsource/inter/400.css'
|
|
import '@fontsource/inter/700.css'
|
|
import '../src/styles/globals.css'
|
|
|
|
const preview: Preview = {
|
|
parameters: {
|
|
controls: {
|
|
matchers: {
|
|
color: /(background|color)$/i,
|
|
date: /Date$/i,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
export default preview
|