import type { Meta, StoryObj } from '@storybook/react' import { ImageProductEdit } from './index' const meta: Meta = { component: ImageProductEdit, title: 'atoms/ImageProductEdit', args: { } } export default meta type Story = StoryObj export const ImageProductEditComponent: Story = { args: { } }