mirror of
https://github.com/harivansh-afk/Saas-Teamspace-2.git
synced 2026-04-15 05:02:11 +00:00
19 lines
322 B
TypeScript
19 lines
322 B
TypeScript
import '../src/styles/global.css';
|
|
|
|
import type { Preview } from '@storybook/react';
|
|
|
|
const preview: Preview = {
|
|
parameters: {
|
|
controls: {
|
|
matchers: {
|
|
color: /(background|color)$/i,
|
|
date: /Date$/i,
|
|
},
|
|
},
|
|
nextjs: {
|
|
appDirectory: true,
|
|
},
|
|
},
|
|
};
|
|
|
|
export default preview;
|