mirror of
https://github.com/remvze/moodist.git
synced 2025-12-17 00:44:14 +00:00
16 lines
275 B
TypeScript
16 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;
|