Components
npx @21st-dev/cli add jolbol1/list-box-2Loading preview...
import { ListBox, ListBoxItem } from "@/components/ui/list-box"
export default function ListBoxDemo() {
return (
<ListBox
aria-label="Favorite animal"
selectionMode="single"
selectedKeys={["cat"]}
>
<ListBoxItem>Aardvark</ListBoxItem>
<ListBoxItem id="cat">Cat</ListBoxItem>
<ListBoxItem>Dog</ListBoxItem>
<ListBoxItem>Kangaroo</ListBoxItem>
<ListBoxItem>Panda</ListBoxItem>
<ListBoxItem>Snake</ListBoxItem>
</ListBox>
)
}
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...