function MyResponsiveComponent() { const width = useWindowWidth(); // Our custom Hook return (

Window width is {width}

); }