const ListboxWrapper = `const ListboxWrapper = ({children}) => (
{children}
);`; const App = `import {Listbox, ListboxItem} from "@nextui-org/react"; import {ListboxWrapper} from "./ListboxWrapper"; 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} )} ); }`; const react = { "/App.jsx": App, "/ListboxWrapper.jsx": ListboxWrapper, }; export default { ...react, };