const App = `import {Popover, PopoverTrigger, PopoverContent, Button, Input} from "@nextui-org/react"; export default function App() { const backdrops = ["opaque", "blur", "transparent", ]; const content = ( {(titleProps) => (

Dimensions

)}
) return (
{backdrops.map((backdrop) => ( {content} ))}
); }`; const react = { "/App.jsx": App, }; export default { ...react, };