import '@fontsource/inter/400.css'; import '@fontsource/inter/500.css'; import '@fontsource/inter/600.css'; import { type Preview } from '@storybook/react-vite'; import '@ui/theme-constants/theme-light.css'; import '@ui/theme-constants/theme-dark.css'; import { ThemeProvider } from '@ui/theme-constants'; const preview: Preview = { tags: ['autodocs'], parameters: { a11y: { test: 'error', }, }, decorators: [ (Story) => { return ( ); }, ], }; export default preview;