Login
Remember
Register
Ask a Question
What are the benefits of React Router V4?
0
votes
asked
Nov 1, 2023
in
ReactJS
by
AdilsonLima
What are the benefits of React Router V4?
reactjs-interview-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Nov 1, 2023
by
AdilsonLima
Below are the main benefits of React Router V4 module,
In React Router v4(version 4), the API is completely about components. A router can be visualized as a single component(
<BrowserRouter>
) which wraps specific child router components(
<Route>
).
You don't need to manually set history. The router module will take care history by wrapping routes with
<BrowserRouter>
component.
The application size is reduced by adding only the specific router module(Web, core, or native)
...