React Router Configuration

React Masters
3 min readMay 31, 2024

--

React Router configuration
React Native Course

Introduction to React Router

React Router is a powerful library used to manage navigation in React applications. It allows you to create dynamic, user-friendly web apps with seamless transitions between components or pages.

Key Features:

  • Dynamic Routing: Routes are defined in the app and can change based on user actions or conditions.
  • Nested Routing: Easily create complex layouts with nested routes.
  • URL Parameters: Pass data through the URL, making your app more interactive.
  • Navigation Guards: Control access to routes for improved security.

Basic Usage:

  1. Installation: Start by installing the React Router.
npm install react-router-dom

2. Setting Up Routes: Define routes in your application using <BrowserRouter>, <Routes>, and <Route> components.

import { BrowserRouter as Router, Routes, Route } from 'react-router-dom';
import Home from './Home';
import About from './About';

function App() {
return (
<Router>
<Routes>
<Route path="/" element={<Home />} />
<Route path="/about" element={<About />} />
</Routes>
</Router>
);
}

export default App;

3. Navigating Between Routes: Use <Link> or useNavigate to move between routes.

import { Link } from 'react-router-dom';

function Navigation() {
return (
<nav>
<Link to="/">Home</Link>
<Link to="/about">About</Link>
</nav>
);
}

export default Navigation;

Example:

Let’s say you have a Home page and an About page. You can set up routes so users can navigate between these pages without reloading the entire app.

Home.js

import React from 'react';

function Home() {
return <h1>Welcome to the Home Page</h1>;
}

export default Home;

About.js

import React from 'react';

function About() {
return <h1>About Us</h1>;
}

export default About;

By setting up your routes and navigation, users can click on links to switch between the Home and About pages smoothly.

React Router Example:

What is a React Router?

React Router lets you create routes in your React app. A route defines a path in your app that renders a specific component. For example, you can have a Home page, an About page, and a Contact page, and React Router will handle the navigation between these pages without refreshing the entire web page.

Setting Up React Router

First, you need to install React Router. You can do this using npm or yarn:

npm install react-router-dom

or

yarn add react-router-dom

Basic Example

Here’s a simple example to show how React Router works:

  1. Set Up Your Components

First, create some basic components for your pages:

// Home.js
import React from 'react';

function Home() {
return <h2>Home Page</h2>;
}

export default Home;

// About.js
import React from 'react';

function About() {
return <h2>About Page</h2>;
}

export default About;

// Contact.js
import React from 'react';

function Contact() {
return <h2>Contact Page</h2>;
}

export default Contact;

2. Configure React Router in Your App

Next, set up the router in your main App component:

// App.js
import React from 'react';
import { BrowserRouter as Router, Route, Link, Switch } from 'react-router-dom';
import Home from './Home';
import About from './About';
import Contact from './Contact';

function App() {
return (
<Router>
<div>
<nav>
<ul>
<li>
<Link to="/">Home</Link>
</li>
<li>
<Link to="/about">About</Link>
</li>
<li>
<Link to="/contact">Contact</Link>
</li>
</ul>
</nav>

<Switch>
<Route exact path="/" component={Home} />
<Route path="/about" component={About} />
<Route path="/contact" component={Contact} />
</Switch>
</div>
</Router>
);
}

export default App;

How It Works

  • Router: The Router component wraps your entire application. It keeps track of the browser's URL and renders the corresponding components.
  • Link: The Link component is used to create navigation links. Clicking on a Link changes the URL without refreshing the page.
  • Route: The Route component defines a path and the component to render when the URL matches that path.
  • Switch: The Switch component renders the first child Route that matches the URL. It ensures only one route is rendered at a time.

Navigating Between Pages

When you click on the links (Home, About, Contact), the URL changes and the corresponding component is rendered without refreshing the page. This is the core feature of single-page applications (SPAs).

Summary:

React Router simplifies the process of creating multi-page applications in React. With just a few components (Router, Route, Link, and Switch), you can build dynamic and interactive navigation in your app.

Try it in your next React project, and see how easy it makes routing and navigation!

--

--