import { useState, useEffect } from 'react'; export const useWindowsDimensions = () => { const [width, setWidth] = useState(0); useEffect(() => { if (typeof window !== 'undefined') { setWidth(window.innerWidth); } }, [typeof window !== 'undefined']); return { width }; };