๐Ÿ“ฆ Nithin1506200 / theme-management

๐Ÿ“„ preview.ts ยท 17 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17import type { Preview } from '@storybook/react';
// import '../src/css/*.scss';
import '../src/css/index.scss';
const preview: Preview = {
  parameters: {
    actions: { argTypesRegex: '^on[A-Z].*' },
    controls: {
      matchers: {
        color: /(background|color)$/i,
        date: /Date$/
      }
    }
  }
};

export default preview;