import * as React from "react"; import { ChevronDownIcon, CopyIcon, DownloadIcon } from "@iconicicons/react"; import { ButtonGroup, CheckboxGroup, Popover } from "@lemonsqueezy/wedges"; export default function Example() { const wrapper = React.useRef(null); const [container, setContainer] = React.useState(null); React.useEffect(() => { setContainer(wrapper.current); }, []); return (
{container ? ( ) : null}
); }