mirror of
https://github.com/foomo/ui.git
synced 2025-10-16 12:45:34 +00:00
15 lines
265 B
TypeScript
15 lines
265 B
TypeScript
import type { Preview } from '@storybook/react';
|
|
import '../src/styles.ts';
|
|
|
|
const preview: Preview = {
|
|
parameters: {
|
|
controls: {
|
|
matchers: {
|
|
color: /(background|color)$/i,
|
|
date: /Date$/i,
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export default preview; |