import {Popover, PopoverTrigger, PopoverContent, Button} from "@heroui/react"; export default function App() { const content = (
Popover Content
This is the popover content
); const variants = ["solid", "bordered", "flat", "faded", "shadow"]; return (
{variants.map((variant) => ( {content} ))}
); }