aboutsummaryrefslogtreecommitdiff
path: root/apps/storybook/.storybook/preview.ts
blob: 4663aa6839deffec35aea928d91671f694caedd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import type { Preview } from '@storybook/react';
import '@polyfrost/ui/style';

const preview: Preview = {
	parameters: {
		actions: { argTypesRegex: '^on[A-Z].*' },
		controls: {
			matchers: {
				color: /(background|color)$/i,
				date: /Date$/
			}
		}
	}
};

export default preview;