Measure the window size in React
npm install @reach/window-size !MIT license
Measure the current window dimensions.
``jsx
import WindowSize, { useWindowSize } from "@reach/window-size";
function Example() {
const { width, height } = useWindowSize();
return (
Looks like a pretty{" "}
{width <= 400 ? "small" : width >= 1000 ? "large" : "normal"} screen!