| 1234567891011121314151617181920212223242526272829 |
- import React from "react";
- /** @type { import('@storybook/react-webpack5').Preview } */
- const preview = {
- parameters: {
- controls: {
- matchers: {
- color: /(background|color)$/i,
- date: /Date$/i
- }
- },
- options: {
- storySort: {
- order: [
- "Docs",
- [
- "Intro",
- "Getting Started"
- ],
- "*"
- ]
- }
- }
- },
- decorators: [
- (Story) => <Story/>
- ]
- };
- export default preview;
|