Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions blog/react-router/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ author: ""

<Sponsorship />

A React Router tutorial which teaches you how to use **React Router 7**. The code for this React Router v7 tutorial can be found over [here](https://github.com/rwieruch/examples/tree/main/react-router). In order to get you started, create a new React project (e.g. [Vite](https://vite.dev/guide/)). Afterward, [install React Router](https://reactrouter.com/):
A React Router tutorial which teaches you how to use **React Router 7**. The code for this React Router v7 tutorial can be found over [here](https://github.com/rwieruch/examples/tree/main/react-router). In order to get you started, create a new React project (e.g. [Vite](https://vite.dev/guide/)) starting from a basic React template. Avoid using a React Router template, which will likely already include the routing features that this tutorial will teach you how to build.

Afterward, [install React Router](https://reactrouter.com/):

```sh
npm install react-router
Expand Down Expand Up @@ -624,4 +626,4 @@ After all, having search params in your URL gives you the benefit of sharing mor

<Divider />

React Router is one of the most used [third-party libraries for React](/react-libraries/). Its core feature is mapping Link components to Route components which enables developers implementing [client-side routing without making requests to a web server](/web-applications/). However, going beyond this core feature, it's a full-blown routing library which enables declarative nested routing, dynamic routing, navigation, active links yet also programmatic navigation and searching via the URL.
React Router is one of the most used [third-party libraries for React](/react-libraries/). Its core feature is mapping Link components to Route components which enables developers implementing [client-side routing without making requests to a web server](/web-applications/). However, going beyond this core feature, it's a full-blown routing library which enables declarative nested routing, dynamic routing, navigation, active links yet also programmatic navigation and searching via the URL.