SDSumi Deyinsumideycodingblog.hashnode.dev·Mar 25, 2023 · 3 min readGetting Started With ReduxPrerequisites: Create a react-app using create-react-app What is Redux? Redux is a predictable state container for JavaScript applications. It is often used in combination with React but can be used with any other JavaScript framework or library as w...00
SDSumi Deyinsumideycodingblog.hashnode.dev·Mar 9, 2023 · 3 min readCode SplittingCode Splitting is a technique used in React applications to improve the performance and reduce the loading time of the applications. What is Code Splitting? Code splitting is the process of breaking down a large codebase into smaller chunks, which ca...00
SDSumi Deyinsumideycodingblog.hashnode.dev·Mar 5, 2023 · 3 min readuseCallback vs useMemoIn the world of React, when building a complex application performance optimization is a crucial aspect. Two of the most commonly used hooks that can aid in this are useCallback and useMemo. While both hooks are used to better the performance of the ...00