import { Meta, StoryObj } from "@storybook/react" import React from "react" import { Button } from "../Button" import { CenterAligned } from "../CenterAligned" import { SpaceBetween } from "../SpaceBetween" import { SideModule, SideModuleProps } from "./SideModule" type Story = StoryObj const meta: Meta = { title: "Design System/SideModule", component: SideModule, } export default meta const Template = (args: SideModuleProps) => { return ( <> Owned Items Content My Listings Content ) } export const Default: Story = { render: Template, }