import React, { MutableRefObject, useRef } from "react"; const HomeRefContext = React.createContext>( null ); const HomeRefProvider: React.FC = ({ children }) => { const value = useRef(null); return ( {children} ); }; export { HomeRefContext, HomeRefProvider };