Install React Router
bash
npm install react-router-domBasic route configuration
tsx
import { BrowserRouter, Routes, Route } from 'react-router-dom';
<BrowserRouter>
<Routes>
<Route path="/" element={<Home />} />
<Route path="/about" element={<About />} />
</Routes>
</BrowserRouter>Navigation links
tsx
import { Link } from 'react-router-dom';
<Link to="/about">About</Link>404 route
tsx
<Route path="*" element={<NotFound />} />Next, we will use nested routes for layouts.