[WIP] dropdown bug

This commit is contained in:
daniel31x13
2023-10-28 07:20:35 -04:00
parent ac795cdbdc
commit db47a2a142
3 changed files with 18 additions and 4 deletions
+3 -1
View File
@@ -4,6 +4,7 @@ type Props = {
children: ReactNode;
onClickOutside: Function;
className?: string;
style?: React.CSSProperties;
};
function useOutsideAlerter(
@@ -30,12 +31,13 @@ export default function ClickAwayHandler({
children,
onClickOutside,
className,
style,
}: Props) {
const wrapperRef = useRef(null);
useOutsideAlerter(wrapperRef, onClickOutside);
return (
<div ref={wrapperRef} className={className}>
<div ref={wrapperRef} className={className} style={style}>
{children}
</div>
);