Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Вивчайте Route-Based Rendering | React Router
Introduction to React
course content

Зміст курсу

Introduction to React

Introduction to React

1. Getting Started: ES6
2. Getting Started: JSX
3. React in Practice
4. React Components
5. Controlling Data & Content
6. Hooks
7. React Router

book
Route-Based Rendering

We can render components based on URLs. To do that, we need to use the following components:

  • We use BrowserRouter to enclose all the other code in the main React component;

  • Routes is used for enclosing all individual Route components and their child components. It returns a single React component based on the URL. There can be multiple <Routes> components in the code;

  • Route represents a URL path and points to a React component.

Look at the example from the previous chapter:

js
  • The <Routes> component groups all the <Route> components and returns the most relevant React component based on the current user's URL path;

  • The <Route> component has two attributes: path and element. The path attribute is the relative path based on the parent component. It will make more sense with further explanation. The element stores a reference to the React component that the URL should render;

  • We can nest <Route> components to create nested routes. For example, to create http://***.com/about/updates path, we can change the structure like this:

js

In the above code, we created an about path but didn't specify a target component. Instead, we created two nested routes.

The first nested Route doesn't have a path attribute but, instead, an index, which indicates that its path is that of the parent Route.

The other one points to the Update component having path updates - React Router automatically considers this path relative to the parent path, that is, http://***.com/about/.

question mark

Which of the following is NOT a component provided by React Router?

Select the correct answer

Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 7. Розділ 2

Запитати АІ

expand
ChatGPT

Запитайте про що завгодно або спробуйте одне із запропонованих запитань, щоб почати наш чат

course content

Зміст курсу

Introduction to React

Introduction to React

1. Getting Started: ES6
2. Getting Started: JSX
3. React in Practice
4. React Components
5. Controlling Data & Content
6. Hooks
7. React Router

book
Route-Based Rendering

We can render components based on URLs. To do that, we need to use the following components:

  • We use BrowserRouter to enclose all the other code in the main React component;

  • Routes is used for enclosing all individual Route components and their child components. It returns a single React component based on the URL. There can be multiple <Routes> components in the code;

  • Route represents a URL path and points to a React component.

Look at the example from the previous chapter:

js
  • The <Routes> component groups all the <Route> components and returns the most relevant React component based on the current user's URL path;

  • The <Route> component has two attributes: path and element. The path attribute is the relative path based on the parent component. It will make more sense with further explanation. The element stores a reference to the React component that the URL should render;

  • We can nest <Route> components to create nested routes. For example, to create http://***.com/about/updates path, we can change the structure like this:

js

In the above code, we created an about path but didn't specify a target component. Instead, we created two nested routes.

The first nested Route doesn't have a path attribute but, instead, an index, which indicates that its path is that of the parent Route.

The other one points to the Update component having path updates - React Router automatically considers this path relative to the parent path, that is, http://***.com/about/.

question mark

Which of the following is NOT a component provided by React Router?

Select the correct answer

Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 7. Розділ 2
Ми дуже хвилюємося, що щось пішло не так. Що трапилося?
some-alt