import { ComponentStory, ComponentMeta } from '@storybook/react'; import { WithModals } from 'src/utils/storybook/decorators'; import CreatePostPage from './CreatePostPage'; export default { title: 'Posts/Create Post Page/Page', component: CreatePostPage, argTypes: { backgroundColor: { control: 'color' }, }, decorators: [ WithModals ] } as ComponentMeta; const Template: ComponentStory = (args) => export const Default = Template.bind({}); Default.args = { }