mirror of https://github.com/buster-so/buster.git
16 lines
271 B
TypeScript
16 lines
271 B
TypeScript
|
import type { Preview } from '@storybook/react';
|
||
|
import '../src/styles/styles.scss';
|
||
|
|
||
|
const preview: Preview = {
|
||
|
parameters: {
|
||
|
controls: {
|
||
|
matchers: {
|
||
|
color: /(background|color)$/i,
|
||
|
date: /Date$/i
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
|
||
|
export default preview;
|