Summary
In this chapter, we developed our own blog application from scratch! We started with a mock-up and then created static components to resemble it. Afterward, we implemented Hooks to allow for dynamic behavior. Throughout the chapter, we learned how to deal with local and global state using Hooks. Furthermore, we learned how to use multiple Hooks, and in which components to define Hooks and store state. We also learned how to solve common use cases, such as form validation and submission.
In the next chapter, Chapter 4, Using the Reducer and Effect Hooks, we are going to learn about the Reducer Hook, which allows us to deal with certain state changes more easily. Furthermore, we are going to learn about the Effect Hook, which allows us to run code with side effects.