import { PropsWithChildren, useRef } from "react"; export function WrapComponent({ children }: PropsWithChildren) { const ref = useRef(null); return (
{children(ref)}
); }