React Router 6 Lazy Loading

 by Robin Wieruch
 - Edit this Post

A React Router tutorial which teaches you how to use Lazy Loading with React Router 6. The code for this React Router v6 tutorial can be found over here. In order to get you started, create a new React project (e.g. create-react-app). Afterward, install React Router and read the following React Router tutorial to get yourself aligned to what follows next.

Continue Reading:

Lazy Loading on route level with React Router is a powerful feature. Usually a client-side rendered React applications comes as one bundle from a web server. However, when enabling lazy loading, the bundle is split into smaller bundles. When a user visits a specific part of the application, only this part lazy loads on demand. The term for this optimization is called Code Splitting and improves the performance when a user navigates through a larger React application.

In the following we will recreate this scenario with React Router. To illustrate how this works and how you can implement lazy loading on route level when using React Router for introducing code splitting in React yourself, we will start off with the following example:

import * as React from 'react';
import { Routes, Route, Link } from 'react-router-dom';
import Home from './pages/Home';
import About from './pages/About';
const App = () => {
return (
<>
<h1>React Router</h1>
<nav>
<Link to="/">Home</Link>
<Link to="/about">About</Link>
</nav>
<Routes>
<Route index element={<Home />} />
<Route path="about" element={<About />} />
<Route path="*" element={<NoMatch />} />
</Routes>
</>
);
};
const NoMatch = () => {
return <p>There's nothing here: 404!</p>;
};
export default App;

In this we have matching Link and Route components from React Router for the home/ and about/ routes. Furthermore, we have a so-called No Match Route loaded with the NoMatch component which acts as fallback route. From here, we will explore the concept of Lazy Loading.

Lazy Loading in React Router

Both, Home and About component, are imported from another folder/file. They are not doing much for the sake of keeping this example small. For instance, the Home component could look like the following:

const Home = () => {
return (
<>
<h2>Home</h2>
</>
);
};
export default Home;

Lazy loading a component in React is not difficult, because React offers a top-level API for it called React.lazy. Because we already import both page components from another file, we can just use React's lazy() method as wrapper here:

import * as React from 'react';
import { Routes, Route, Link } from 'react-router-dom';
const Home = React.lazy(() => import('./pages/Home'));
const About = React.lazy(() => import('./pages/About'));
const App = () => {
return (
<>
...
<Routes>
<Route
index
element={
<React.Suspense fallback={<>...</>}>
<Home />
</React.Suspense>
}
/>
<Route
path="about"
element={
<React.Suspense fallback={<>...</>}>
<About />
</React.Suspense>
}
/>
<Route path="*" element={<NoMatch />} />
</Routes>
</>
);
};

You may have noticed that we are using React Suspense here to offer a fallback React element when the component is lazy loaded from the server. At this point, it's worth to note that lazy loading is nothing React Router specific but rather React specific, because we as developers choose to apply React.lazy method on a page component which enables lazy loading on a route level. However, any component can be lazy loaded this way.

Continue Reading:

If both page components would be named exports instead of default exports, lazy loading with only using React.lazy becomes cumbersome. Instead I want to show you a popular lazy loading library for React called @loadable/component. After installing it, you can use it this way:

import * as React from 'react';
import { Routes, Route, Link } from 'react-router-dom';
import loadable from '@loadable/component';
const Home = loadable(() => import('./pages/Home'));
const About = loadable(() => import('./pages/About'));
const App = () => {
return (
<>
...
<Routes>
<Route index element={<Home />} />
<Route path="about" element={<About />} />
<Route path="*" element={<NoMatch />} />
</Routes>
</>
);
};

See how this library applies React Suspense by default. Furthermore, if your page components happen to be named exports, you can lazy load them the following way:

const Home = loadable(() => import('./pages/Home'), {
resolveComponent: (components) => components.Home,
});
const About = loadable(() => import('./pages/About'), {
resolveComponent: (components) => components.About,
});

That's it. We have introduced lazy loading on a route level by using React's lazy function. Furthermore, we introduced an opt-in library that helped for the sake of convenience. After all, using cope splitting on a route level improves the performance for larger React applications, because your users do not have to download the whole application. Instead, only one the root plus one page is loaded. When a user navigates to another page, this page is lazy loaded.

Keep reading about 

A React Router tutorial which teaches you how to use Authentication in React Router 6 . The code for this React Router v6 tutorial can be found over here . In order to get you started, create a new…

A React Router tutorial which teaches you how to perform a Redirect in React Router 6 . The code for this React Router v6 tutorial can be found over here . In order to get you started, create a new…

The Road to React

Learn React by building real world applications. No setup configuration. No tooling. Plain React in 200+ pages of learning material. Learn React like 50.000+ readers.

Get it on Amazon.