import type { Meta, StoryObj } from "@storybook/react"; import DocsSidebar from "./DocsSidebar"; const meta: Meta = { title: "Docs/DocsSidebar", component: DocsSidebar, }; export default meta; type Story = StoryObj; export const Default: Story = { args: { sections: [ { title: "Getting Started", children: [ { title: "Introduction", href: "/docs/intro" }, { title: "Quick Start", href: "/docs/quickstart" }, ], }, { title: "Core Concepts", children: [ { title: "Routing", href: "/docs/routing" }, { title: "Providers", href: "/docs/providers" }, ], }, ], }, };