import React from 'react'; import { ListBox, ListBoxItem } from './ListBox'; import type { Meta, StoryObj } from '@storybook/react-vite'; const meta = { title: 'Basic/ListBox', component: ListBox, parameters: { layout: 'centered', }, tags: ['autodocs'], } satisfies Meta; export default meta; type Story = StoryObj; export const Default: Story = { render: (args: any) => ( Chocolate Mint Strawberry Vanilla ), args: { onAction: () => {}, selectionMode: 'single', }, };