Basic Usage

React Router DOM provides several components for defining routes in your application:

  • BrowserRouter: Wraps your application with a router component that listens to changes in the URL.
  • Router: Alias for BrowserRouter. (This is used for renaming convenience, if desired.)
  • Routes: Container for defining routes in your application.
  • Route: Defines a route that renders a component based on the current URL path.

Example:

JavaScript
// App.js

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

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

                <Routes>
                    <Route path="/about" element={<About />} />
                    <Route path="/" element={<Home />} />
                </Routes>
            </div>
        </Router>
    );
}
export default App;

Output:

NPM React Router Dom

React Router DOM is a powerful routing library for React applications that enables navigation and URL routing. In this article, we’ll explore React Router DOM in-depth, covering its installation, basic usage, advanced features, and best practices.

Similar Reads

What is React Router DOM?

React Router DOM is a collection of navigational components for React applications that allows developers to declaratively define the application’s UI based on the URL. It provides a way to synchronize the UI with the URL, enabling client-side routing in single-page applications (SPAs)....

Steps to Implement React-router-dom

Step 1: Create a React application using the following command:...

Basic Usage

React Router DOM provides several components for defining routes in your application:...

Conclusion

React Router DOM, available via npm, simplifies client-side routing in React applications. It provides essential components like BrowserRouter, Router, Routes, and Route, facilitating URL-based navigation and rendering components based on URL paths. With its intuitive API, React Router DOM enables seamless navigation and state management, enhancing the user experience in single-page applications....