December 2022
Beginner to intermediate
590 pages
10h 26m
English
Learning Objectives
By the end of this chapter, you will be able to do the following:
Use React Router to fetch or send data without using useEffect() or useState()
Share data between different routes without using React's context feature
Update the UI based on the current data submission status
Create page and action routes
Improve the user experience by deferring the loading of non-critical data
In the preceding chapter, you learned how to use React Router to load different components for different URL paths. This is an important feature as it allows you to build multipage websites while still using React.
Routing is a crucial feature for many web applications, and React Router ...
Read now
Unlock full access