18 lines
		
	
	
		
			338 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			338 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import type { Preview } from '@storybook/react-vite'
 | |
| import { PreviewDecorator } from './previewDecorator';
 | |
| 
 | |
| const preview: Preview = {
 | |
|   parameters: {
 | |
|     controls: {
 | |
|       matchers: {
 | |
|        color: /(background|color)$/i,
 | |
|        date: /Date$/i,
 | |
|       },
 | |
|     },
 | |
|   },
 | |
|   decorators: [
 | |
|     PreviewDecorator,
 | |
|   ],
 | |
| };
 | |
| 
 | |
| export default preview; |