© 2023 Hashnode
#state-management
👋 Hey there! If you're working on a React application, you may be wondering how to manage the state effectively. The state is the data that drives your UI, and React provides several ways to manage i…
👋 Hello there! In this blog post, we'll be discussing the useState hook in React. This hook is one of the most commonly used hooks in React, and it's used to manage the state in functional components…
React is a popular JavaScript library that allows developers to create dynamic user interfaces. One of the newer features of React is Hooks, which were introduced in React 16.8. Hooks provide an easie…
State management in React is the process of managing and updating the state of a component or an application in response to user interactions, server responses, or other events. The state is an object…
Flutter is a popular mobile app development framework that allows developers to build high-quality, fast-performing, and visually appealing apps for Android, iOS, and other platforms. With Flutter, de…
In this article, we'll discuss the common error that arises when using Zustand's persist middleware with Next.js. You might have received errors like "Text content does not match server-rendered HTML"…
If you're looking for a lightweight state management solution for your React application, Zustand is worth exploring. Zustand is a state management library that provides a simple and efficient way to …
When I was new and less experienced, was working on a project and would eventually realize that the size of the project had increased and also had problems on running or building the project. So, star…
What are we going to build? We are going to build a Nextjs application, with a counter and name field. The counter will increment and decrement when clicked on the '+' and '-' button respectively. And…
...For the introduction to react-query and useQuery hooks, Read my previous post Part one In my previous post, we explored the introduction to react query and useQuery hook. In this post, we explore u…