Ghost/ghost/signup-form/.storybook/preview.tsx

32 lines
638 B
TypeScript
Raw Normal View History

import React from 'react';
import type { Preview } from "@storybook/react";
import './storybook.css';
const preview: Preview = {
parameters: {
actions: { argTypesRegex: "^on[A-Z].*" },
controls: {
matchers: {
color: /(background|color)$/i,
date: /Date$/,
},
},
options: {
storySort: {
order: ['Global', 'Settings', 'Experimental'],
},
},
},
decorators: [
(Story) => (
<div className="signup-form" style={{padding: '24px'}}>
{/* 👇 Decorators in Storybook also accept a function. Replace <Story/> with Story() to enable it */}
<Story />
</div>
),
],
};
export default preview;