VOOZH about

URL: https://blog.logrocket.com/developing-responsive-layouts-with-react-hooks/

⇱ Developing responsive layouts with React Hooks - LogRocket Blog


2020-02-21
1622
#react
Ben Honeywill
14404
👁 Image

See how LogRocket's Galileo AI surfaces the most severe issues for you

No signup required

Check it out

CSS is the perfect tool when it comes to creating responsive websites and apps, that’s not going to change any time soon. However, sometimes in a React application, you need to conditionally render different components depending on the screen size.

👁 Image

Wouldn’t it be great if instead of having to reach for CSS and media queries we could create these responsive layouts right in our React code? Let’s take a quick look at a naive implementation of something like this, to see exactly what I mean:

const MyComponent = () => {
 // The current width of the viewport
 const width = window.innerWidth;
 // The width below which the mobile view should be rendered
 const breakpoint = 620;
 
 /* If the viewport is more narrow than the breakpoint render the
 mobile component, else render the desktop component */
 return width < breakpoint ? <MobileComponent /> : <DesktopComponent />;
}

This simple solution will certainly work. Depending on the window width of the user’s device we render either the desktop or mobile view. But there is a big problem when the window is resized the width value is not updated, and the wrong component could be rendered!

We are going to use React Hooks to create an elegant and, more importantly, reusable solution to this problem of creating responsive layouts in React. If you haven’t used React Hooks extensively yet, this should be a great introduction and demonstration of the flexibility and power that Hooks can provide.

🚀 Sign up for The Replay newsletter

The Replay is a weekly newsletter for dev and engineering leaders.

Delivered once a week, it's your curated guide to the most important conversations around frontend dev, emerging AI tools, and the state of modern software.

Initial implementation using Hooks

The problem with the example shown above is that when the window is resized the value of width is not updated. In order to solve this issue, we can keep track of width in React state and use a useEffect Hook to listen for changes in the width of the window:

const MyComponent = () => {
 // Declare a new state variable with the "useState" Hook
 const [width, setWidth] = React.useState(window.innerWidth);
 const breakpoint = 620;

 React.useEffect(() => {
 /* Inside of a "useEffect" hook add an event listener that updates
 the "width" state variable when the window size changes */
 window.addEventListener("resize", () => setWidth(window.innerWidth));

 /* passing an empty array as the dependencies of the effect will cause this
 effect to only run when the component mounts, and not each time it updates.
 We only want the listener to be added once */
 }, []);

 return width < breakpoint ? <MobileComponent /> : <DesktopComponent />;
}

Now whenever the window is resized the width state variable is updated to equal the new viewport width, and our component will re-render to show the correct component responsively. So far so good!

There is still a small problem with our code, though. We are adding an event listener, but never cleaning up after ourselves by removing it when it is no longer needed. Currently when this component is unmounted the “resize” event listener will linger in memory, continuing to be called when the window is resized and will potentially cause issues. In old school React you would remove the event listener in a componentWillUnmount lifecycle event, but with the useEffect Hook all we need to do is return a cleanup function from our useEffect.

const MyComponent = () => {
 const [width, setWidth] = React.useState(window.innerWidth);
 const breakpoint = 620;

 React.useEffect(() => {
 const handleWindowResize = () => setWidth(window.innerWidth)
 window.addEventListener("resize", handleWindowResize);

 // Return a function from the effect that removes the event listener
 return () => window.removeEventListener("resize", handleWindowResize);
 }, []);

 return width < breakpoint ? <MobileComponent /> : <DesktopComponent />;
}

This is looking good now, our component listens to the window resize event and will render the appropriate content depending on the viewport width. It also cleans up by removing the no longer needed event listener when it un-mounts.

This is a good implementation for a single component, but we most likely want to use this functionality elsewhere in our app as well, and we certainly don’t want to have to rewrite this logic over and over again every time!

Making the logic reusable with a custom Hook

Custom React Hooks are a great tool that we can use to extract component logic into easily reusable functions. Let’s do this now and use the window resizing logic we have written above to create a reusable useViewport Hook:

const useViewport = () => {
 const [width, setWidth] = React.useState(window.innerWidth);

 React.useEffect(() => {
 const handleWindowResize = () => setWidth(window.innerWidth);
 window.addEventListener("resize", handleWindowResize);
 return () => window.removeEventListener("resize", handleWindowResize);
 }, []);

 // Return the width so we can use it in our components
 return { width };
}

You’ve probably noticed that the code above is almost identical to the code we wrote before, we have simply extracted the logic into its own function which we can now reuse. Hooks are simply functions composed of other Hooks, such as useEffect, useState, or any other custom Hooks you have written yourself.

We can now use our newly written Hook in our component, and the code is now looking much more clean and elegant.

const MyComponent = () => {
 const { width } = useViewport();
 const breakpoint = 620;

 return width < breakpoint ? <MobileComponent /> : <DesktopComponent />;
}

And not only can we use the useViewport Hook here, we can use it in any component that needs to be responsive!


Over 200k developers use LogRocket to create better digital experiences

👁 Image
Learn more →

Another great thing about Hooks is that they can be easily extended. Media queries don’t only work with the viewport width, they can also query the viewport height. Let’s replicate that behaviour by adding the ability to check the viewport height to our Hook.

const useViewport = () => {
 const [width, setWidth] = React.useState(window.innerWidth);
 // Add a second state variable "height" and default it to the current window height
 const [height, setHeight] = React.useState(window.innerHeight);

 React.useEffect(() => {
 const handleWindowResize = () => {
 setWidth(window.innerWidth);
 // Set the height in state as well as the width
 setHeight(window.innerHeight);
 }

 window.addEventListener("resize", handleWindowResize);
 return () => window.removeEventListener("resize", handleWindowResize);
 }, []);

 // Return both the height and width
 return { width, height };
}

That was pretty easy! This Hook is working well now, but there is still room for improvement. Currently, every component that uses this Hook will create a brand new event listener for the window resize event. This is wasteful, and could cause performance issues if the Hook were to be used in a lot of different components at once. It would be much better if we could get the Hook to rely on a single resize event listener that the entire app could share.

Optimizing performance with a Context

We want to improve the performance of our useViewport Hook by sharing a single-window resize event listener amongst all the components that use the Hook. React Context is a great tool in our belt that we can utilize when state needs to be shared with many different components, so we are going to create a new viewportContext where we can store the state for the current viewport size and the logic for calculating it.

const viewportContext = React.createContext({});

const ViewportProvider = ({ children }) => {
 // This is the exact same logic that we previously had in our hook

 const [width, setWidth] = React.useState(window.innerWidth);
 const [height, setHeight] = React.useState(window.innerHeight);

 const handleWindowResize = () => {
 setWidth(window.innerWidth);
 setHeight(window.innerHeight);
 }

 React.useEffect(() => {
 window.addEventListener("resize", handleWindowResize);
 return () => window.removeEventListener("resize", handleWindowResize);
 }, []);

 /* Now we are dealing with a context instead of a Hook, so instead
 of returning the width and height we store the values in the
 value of the Provider */
 return (
 <viewportContext.Provider value={{ width, height }}>
 {children}
 </viewportContext.Provider>
 );
};

/* Rewrite the "useViewport" hook to pull the width and height values
 out of the context instead of calculating them itself */
const useViewport = () => {
 /* We can use the "useContext" Hook to acccess a context from within
 another Hook, remember, Hooks are composable! */
 const { width, height } = React.useContext(viewportContext);
 return { width, height };
}

Make sure you also wrap the root of your application in the new ViewportProvider, so that the newly rewritten useViewport Hook will have access to the Context when used further down in the component tree.



const App = () => {
 return (
 <ViewportProvider>
 <AppComponent />
 </ViewportProvider>
 );
}

And that should do it! You can still use the useViewport Hook in exactly the same way as before, but now all the data and logic is kept in a single tidy location, and only one resize event listener is added for the entire application.

const MyComponent = () => {
 const { width } = useViewport();
 const breakpoint = 620;

 return width < breakpoint ? <MobileComponent /> : <DesktopComponent />;
}

Easy peasy. Performant, elegant, and reusable responsive layouts with React Hooks 🎉

Other considerations

Our Hook is working but that doesn’t mean we should stop working on it! There are still some improvements that could be made, but they fall outside the scope of this post. If you want to get extra credit (although no one is counting) here are some ideas for things you could do to improve this Hook even further:

  • Improving performance by throttling the window resize event listener so that there are fewer re-renders while resizing the browser window
  • Edit the Hook so that it supports server-side rendering. This could be achieved by checking window exists before trying to access it
  • The Window.matchMedia browser API could provide a better solution to this problem than checking the width of the window. The Hook could be extended to support this too

Conclusion

I have created a Code Sandbox which contains the completed code for this tutorial.


More great articles from LogRocket:


I hope that this article has helped you to learn more about React Hooks and how their flexibility can be leveraged to achieve all kinds of exciting functionality in your apps in a clean and reusable way. Today we have used them to build responsive layouts without needing CSS media queries, but they can really be used for any number of use cases. So get creative!

Happy coding. ✌️

Get set up with LogRocket's modern React error tracking in minutes:

  1. Visit https://logrocket.com/signup/ to get an app ID
  2. Install LogRocket via npm or script tag. LogRocket.init() must be called client-side, not server-side

    $ npm i --save logrocket 
    
    // Code:
    
    import LogRocket from 'logrocket'; 
    LogRocket.init('app/id');
     
    // Add to your HTML:
    
    <script src="https://cdn.lr-ingest.com/LogRocket.min.js"></script>
    <script>window.LogRocket && window.LogRocket.init('app/id');</script>
     
  3. (Optional) Install plugins for deeper integrations with your stack:
    • Redux middleware
    • NgRx middleware
    • Vuex plugin
Get started now
👁 Image
👁 Image
👁 Image

Stop guessing about your digital experience with LogRocket

Get started for free

Recent posts:

Debug Next.js apps with AI agents and next-browser

Learn how next-browser gives AI agents runtime context for debugging Next.js apps, including React props, hydration, PPR, forms, and performance.

👁 Image
Emmanuel John
Jun 17, 2026 ⋅ 9 min read

Stop hardcoding LLM SDKs: Dynamic LLM routing with OpenRouter and Next.js

Build dynamic LLM routing in Next.js with OpenRouter, TanStack AI, task classification, model fallbacks, and cost-aware routing.

👁 Image
Chizaram Ken
Jun 16, 2026 ⋅ 13 min read

What is TSRX?: What JSX would look like if it were designed today

TSRX adds first-class control flow, conditional hooks, and scoped styles to React via a TypeScript compiler extension — no new framework required.

👁 Image
Ikeh Akinyemi
Jun 12, 2026 ⋅ 6 min read

How to add authentication to a React Native app with Better Auth

Learn how to build a full React Native auth system using Better Auth and Expo — with email/password login, Google OAuth, session persistence, and protected routes.

👁 Image
Chinwike Maduabuchi
Jun 9, 2026 ⋅ 13 min read
View all posts

Hey there, want to help make our blog better?

Join LogRocket’s Content Advisory Board. You’ll help inform the type of content we create and get access to exclusive meetups, social accreditation, and swag.

Sign up now