import type { Meta, StoryObj } from "@storybook/react"; import Image from "next/image"; import { ThemeProviderDecorators } from "@/storybook/Decorator"; import { Carousel } from "./carousel"; const meta = { title: "UI/Carousel", component: Carousel, tags: ["autodocs"], decorators: ThemeProviderDecorators, } satisfies Meta; export default meta; type Story = StoryObj; export const DefaultSlider: Story = { render: () => { return ( ); }, }; export const SliderOutNavigation: Story = { render: () => { return ( ); }, };