import React from 'react'; import '../src/styles/demo.css'; import type { Preview } from "@storybook/react"; const preview: Preview = { parameters: { actions: { argTypesRegex: "^on[A-Z].*" }, controls: { matchers: { color: /(background|color)$/i, date: /Date$/, }, }, options: { storySort: { mathod: 'alphabetical', order: ['Global', ['Chrome', 'Form', 'Modal', 'Layout', 'List', '*'], 'Settings', ['Setting Section', 'Setting Group', '*'], 'Experimental'], }, }, }, decorators: [ (Story, context) => { let {scheme} = context.globals; return (
{/* 👇 Decorators in Storybook also accept a function. Replace with Story() to enable it */}
); }, ], globalTypes: { scheme: { name: "Scheme", description: "Select light or dark mode", defaultValue: "light", toolbar: { icon: "mirror", items: ["light", "dark"], dynamicTitle: true } } } }; export default preview;