#reactjs
Read more stories on Hashnode
Articles with this tag
React has a really useful hook called useRef. In some ways, it is similar to the useState hook because it can be used for tracking values. However,...
React offers plenty of hooks for various use cases. useMemo and useCallback are widely used hooks in the React community to solve performance issues....
When dealing with complex state logic in components, it can get quite messy when using useState hook, so it’s not the best solution to use it in cases...
A Guide to Understanding Virtual DOM · What is Virtual DOM? If you're exploring the React library, you've likely come across the term ‘Virtual DOM’. But...