Components
Loading preview...
Here is Menu component
@jollyshopland
npx shadcn@latest add https://21st.dev/r/jollyshopland/menu-1import { JollyMenu, MenuItem } from "@/components/ui/menu-1"
export default function MenuReusable() {
return (
<JollyMenu variant="outline" label="Edit">
<MenuItem>Cut</MenuItem>
<MenuItem>Copy</MenuItem>
<MenuItem>Paste</MenuItem>
<MenuItem>Delete Item</MenuItem>
</JollyMenu>
)
}