Latest Articles

View all →

React useDeferredValue

useDeferredValue lets you defer updating a part of the UI const deferredValue = useDeferredValue(value) useDeferredValue is react hook. You can call this

Dead Simple Chat Team · 3 min read
Custom Hooks: In react with examples

Custom Hooks: In react with examples

in this article we are going to learn about custom hooks in react. Custom hooks are basically functions, that allow users to

Dead Simple Chat Team · 7 min read
React useEffect: A complete guide with examples

React useEffect: A complete guide with examples

React useEffect is a powerful and essential hook that allows you to synchronize a component with external system. Using the react useEffect

Dead Simple Chat Team · 7 min read
React createPortals: A Step by Step guide with examples

React createPortals: A Step by Step guide with examples

React createPortal is a function that lets you render some children into a different part of the DOM <div> <

Dead Simple Chat Team · 9 min read
React Profiler: A Step by step guide to measuring app performance

React Profiler: A Step by step guide to measuring app performance

As react applications are becoming more and more complex, measuring application performance becomes a necessary task for developers. React provides a built

Dead Simple Chat Team · 7 min read
React Server Components with Next.JS: The Complete Guide

React Server Components with Next.JS: The Complete Guide

In this blog post, we will learn more about the new Server Side components introduced in React 18. You can use React

Dead Simple Chat Team · 11 min read
React useState: The Complete guide

React useState: The Complete guide

In this article we are going to learn about react useState.useState is a React Hook that lets you add a state

Dead Simple Chat Team · 8 min read
Formik: Building forms in react Step by Step

Formik: Building forms in react Step by Step

In this article we are going to learn about formik. A  form library in React. We will learn how to build forms

Dead Simple Chat Team · 8 min read
React useRef: A complete guide with examples

React useRef: A complete guide with examples

useRef is a react hook. That lets you reference a value that is not needed for rendering The react useRef returns a

Dead Simple Chat Team · 7 min read
React useCallback

React useCallback

In this blog post, we will see how to use React useCallback hook. What is its purpose we will also look at

Dead Simple Chat Team · 7 min read
React Event Handlers: A Guide

React Event Handlers: A Guide

In this article we will learn how you can add event handlers to your react JSX. Event handlers are functions that you

Dead Simple Chat Team · 7 min read
React useReducer and Reducer: Guide with Examples

React useReducer and Reducer: Guide with Examples

In this tutorial we will learn about useReducer in react along with multiple examples Dead Simple Chat allows you to add chat

Dead Simple Chat Team · 8 min read