import React from "react"; import { Meta, StoryFn } from "@storybook/react"; import { Item as LegacyItem, ListBox as LegacyListBox, } from "@arizeai/components"; import { ListBox, ListBoxItem, ListBoxProps } from "@phoenix/components"; const meta: Meta = { title: "ListBox", component: ListBox, }; export default meta; const Template: StoryFn, "children">> = (props) => ( Aardvark Cat Dog Kangaroo Panda Snake ); export const Default = Template.bind({}); Default.args = { selectionMode: "single", }; export const Legacy = () => ( Aardvark Cat Dog Kangaroo Panda Snake );