Refactor header

This commit is contained in:
Robert Long
2021-12-23 14:40:23 -08:00
parent 87e5cafb77
commit eb620e9220
16 changed files with 307 additions and 130 deletions
+2 -2
View File
@@ -3,11 +3,11 @@ import { DismissButton, useOverlay } from "@react-aria/overlays";
import { FocusScope } from "@react-aria/focus";
import classNames from "classnames";
import styles from "./Popover.module.css";
import { useObjectRef } from "@react-aria/utils";
export const Popover = forwardRef(
({ isOpen = true, onClose, className, children, ...rest }, ref) => {
const fallbackRef = useRef();
const popoverRef = ref || fallbackRef;
const popoverRef = useObjectRef(ref);
const { overlayProps } = useOverlay(
{