Advanced HookReactAdvanced Hook: customHooks()What A custom hook is simply a function that uses other hooks . Use it like any other hook: The…July 29, 2025 1 min
Advanced HookReactAdvanced Hook: useImperativeHandle()Sometimes you need to step outside and interact with components imperatively , for example…July 29, 2025 1 min
Advanced HookReactAdvanced Hook: createContext()Sometimes, multiple components need access to the same state. While lifting state up works in many…July 29, 2025 1 min
Advanced HookReactAdvanced Hook - useLayoutEffect()The useLayoutEffect hook runs after the DOM has been updated but before the browser has had a…July 29, 2025 1 min
Advanced HookReactAdvanced Hook: useReducer()useReducer it follows the same concept as Redux — but locally, inside a component. Idea Instead of…July 29, 2025 1 min
Advanced HookReactAdvanced Hook: useSyncExternalStore()It provides a safe and concurrent-friendly way to subscribe to external mutable sources and keep…July 29, 2025 1 min