church-website/.storybook/preview.tsx
Benno Tielen 6036af1099 init
2024-08-21 17:08:42 +02:00

24 lines
418 B
TypeScript

import type { Preview } from '@storybook/react'
import { lato } from '../src/app/fonts'
const preview: Preview = {
decorators: [
(Story) => {
return (
<div className={lato.className}>
<Story/>
</div>
)
}
],
parameters: {
controls: {
matchers: {
color: /(background|color)$/i,
date: /Date$/i,
},
},
},
}
export default preview