import { ShapeBackgroundWrapper } from "./index"; import { DocsPage } from "@shared/stories/DocsTemplate"; import type { Meta, StoryObj } from "@storybook/react"; const meta: Meta = { title: "Contentful Blocks/ShapeBackgroundWrapper", component: ShapeBackgroundWrapper, tags: ["autodocs"], parameters: { layout: "centered", docs: { page: DocsPage, description: { component: "Contentful shape background wrapper block. Wraps children with optional SVG shape background.", }, }, }, args: { children: "Content", }, }; export default meta; type Story = StoryObj; export const Default: Story = {};