const App = `import {Dropdown, DropdownTrigger, DropdownMenu, DropdownItem, Button} from "@nextui-org/react"; 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 ( {(item) => ( {item.label} )} ); }`; const react = { "/App.jsx": App, }; export default { ...react, };