The hooks, are a new addition to the React library since version 16.8, that let you write stateful component without the need to write a class, The course is fast-paced with practical example and project to get you up to speed fast with using hooks, from basic to advanced. 1)We begin with an overview of the basic hooks, with: useState: to add and update local state inside a function componentuseEffect: serving the same purpose as componentDidMount and componentDidUpdate, the effect hook to apply side effects in your function component when the local state updates2) Then, we dive into the additional hooks, with: useContextuseCallback and useMemouseReduceruseRef3) Finally, we learn to build custom hooks to isolate and reuse stateful logic between multiple function components: to make network call to APIsto validate forms and, to add theme configuration to your project with the option to toggle dark and light theme