Advanced Hooks Provided by React
In the previous chapter, we learned about implementing routes using React Router. Then, we learned about using the Params Hook for dynamic routes. Next, we learned about using the Link component to provide links to different routes. Finally, we learned how to programmatically redirect using the Navigation Hook.
In this chapter, we are going to learn about the various built-in Hooks provided by React. We will start by giving an overview of the built-in React Hooks, and then learn about various utility Hooks. Next, we will learn how to use Hooks to optimize the performance of your app. Finally, we will learn about advanced Effect Hooks.
By the end of this chapter, you will have a full overview of all the built-in Hooks that React provides.
The following topics will be covered in this chapter:
- Overview of built-in React Hooks
- Using utility Hooks
- Using Hooks for performance optimizations
- Using Hooks for advanced...