import {Listbox, ListboxItem} from "@heroui/react"; export const ListboxWrapper = ({children}) => (
{children}
); export default function App() { const items = [ { key: "new", label: "New file", }, { key: "copy", label: "Copy link", }, { key: "edit", label: "Edit file", }, { key: "delete", label: "Delete file", }, ]; return ( alert(key)}> {(item) => ( {item.label} )} ); }