import type { Meta, StoryObj } from "@storybook/react"; import { TabList as TabListComponent } from "./index.js"; import { Tabs as UnstyledTabs } from "../unstyled/Tabs/index.js"; const meta = { component: TabListComponent, argTypes: { items: { table: { disable: true, }, }, pathname: { table: { disable: true, }, }, }, } satisfies Meta; export default meta; export const TabList = { decorators: [ (Story) => ( ), ], args: { label: "Tab List", items: [ { id: "foo", children: "Foo" }, { id: "bar", children: "Bar" }, ], }, } satisfies StoryObj;