mirror of
https://github.com/remvze/moodist.git
synced 2025-09-29 15:30:49 -04:00
17 lines
275 B
TypeScript
17 lines
275 B
TypeScript
import '../src/styles/global.css';
|
|
|
|
import type { Preview } from '@storybook/react';
|
|
|
|
const preview: Preview = {
|
|
parameters: {
|
|
controls: {
|
|
matchers: {
|
|
color: /(background|color)$/i,
|
|
date: /Date$/i,
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export default preview;
|