const App = `import {Popover, PopoverTrigger, PopoverContent, Button} from "@nextui-org/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}
))}
);
}`;
const react = {
"/App.jsx": App,
};
export default {
...react,
};