import { Provider } from "react-redux"; import type { Meta, StoryObj } from "@storybook/react"; import Component from "./"; import { wrapper } from "../../../store"; const image = { imageUrl: "https://base.matterofform.com/media/1gzl5kwa/420d532b02bcbb6b7b40401e9c74cefa.jpg?width=696&height=464&format=webp", }; const meta: Meta = { component: Component, tags: ["autodocs"], decorators: [ (Story) => { const { store } = wrapper.useWrappedStore({}); return ( ); }, ], }; export default meta; type Story = StoryObj; export const ResponsiveImage: Story = { args: { image, preload: true, cdnProps: { width: 696, height: 464, format: "webp", }, widths: { xs: 327, md: 688, lg: 936 }, heights: { xs: 218, md: 439, lg: 599 }, }, };