import { useState } from 'react'; const useGlobalState = () => { const [globalState, setGlobalState] = useState({}); return { globalState, setGlobalState }; }; export default useGlobalState;