I build things for the web....
Hooks Hooks let use state and other features in a functional react component. You might have come across at least a few of them for eg. useState, useEffect, useCallback etc. In this blog post will try to make our own custom hook and use it our react?...
One of the major barriers in improving the accessibility of our apps is the language barrier. And sooner or later will need to build an app that is multilingual or at least bilingual to gain more user base for our application. Let's try to build a b...
The easiest way to use redux in react is via hooks in functional components, Will create a simple react-redux application that provides user auth available to the application and how to modify it 1) Create a new react project and install the followin...
State Management State management means accessing, initializing, modifying, and deleting the state in your react application. Not always but often you will find yourself in the middle ground of what to use to manage the state of your application, ...
What is the state? The state can be anything that needs to live and be modified in the browser State Management in react? State management means accessing, initializing, modifying, and deleting the state in your react application. Types of state Fo...
Every application has two objectives, First to work as intended as per the business logic of the application. The second is to look good, Now good is subjective for some it's clean & minimal for some it's flashy. What's right is for your application ...