MOMichael Oluwatobi Ajoseinoluwatrillions.hashnode.dev·Jul 29, 2024 · 5 min readReact 19: The new updatesThis week, we will be talking about the new React 19 updates and hooks. Having gone through and using some of these new updates, I can only agree that it has simplified some of the rigorous activities developers go through when building apps, especia...00
MOMichael Oluwatobi Ajoseinoluwatrillions.hashnode.dev·Apr 20, 2023 · 5 min readuseMemoOptimizing your application to increase performance should be the goal of every developer. Like me, I know a lot of internet users would rather shut down their computers than deal with a slow website that takes too much time to load its contents. The...00
MOMichael Oluwatobi Ajoseinoluwatrillions.hashnode.dev·Apr 15, 2023 · 7 min readReact Series: useReduceruseState hook as we discussed in one part of the series, helps in handling state management. However, useState is used for simple state management. When the state gets complex, it becomes uneasy to manage and can get quite confusing. In useState, we ...00
MOMichael Oluwatobi Ajoseinoluwatrillions.hashnode.dev·Apr 9, 2023 · 6 min readContext API and useContextProps help you pass down data from parent to child components. By so doing, it's using the flow system of data passage (top to bottom) to get that done. However, when the project grows, it becomes more complex using props to pass down data from one c...00
MOMichael Oluwatobi Ajoseinoluwatrillions.hashnode.dev·Apr 6, 2023 · 5 min readReact Series: useRef HookIf you want to update the value of an element in your component or access any DOM elements, then the useRef() hook is your go-to. When updating state using useState, the component re-renders every time the state is accessed but using useRef, you can ...00