import type { Meta, StoryObj } from "@storybook/react-vite" import { List, ListItem, OrderedList, type OrderedListProps } from "./list" const meta = { title: "UI/List", component: List, tags: ["autodocs"], parameters: { layout: "centered", }, } satisfies Meta export default meta type Story = StoryObj export const Unordered: Story = { args: { children: ( <> First item Second item Third item ), }, } export const Ordered: Story = { args: { children: ( <> First item Second item Third item ), }, render: (args: OrderedListProps) => , }