The Dev Folks

The Dev Folks

Follow
Follow
homenewslettermembers
Tag

React

#reactjs

More content

Read more stories on Hashnode


Articles with this tag

Mastering React Hooks: Custom Hooks

Gurjot SinghGurjot Singh
Jun 15, 20234 min read

React Custom Hooks provide a powerful way to extract and reuse logic and stateful behavior from components, reducing the amount of boilerplate code in...

Mastering React Hooks: Custom Hooks

Mastering React Hooks: Ref Hook

Gurjot SinghGurjot Singh
Jun 1, 20232 min read

Refs are a way to store a reference to a React component or DOM element. The useRef hook is used for creating mutable references to elements or values...

Mastering React Hooks: Ref Hook

Mastering React Hooks: Context Hook

Gurjot SinghGurjot Singh
May 25, 20232 min read

React's context API allows you to share data between components without having to pass props down through every level of the component tree. The...

Mastering React Hooks: Context Hook

Mastering React Hooks: Side Effects

Gurjot SinghGurjot Singh
May 18, 20232 min read

In React, side effects are any actions that are performed outside of rendering a component, such as fetching data or updating the document title....

Mastering React Hooks: Side Effects

Mastering React Hooks: State Management

Gurjot SinghGurjot Singh
May 11, 20232 min read

Managing state is a common task in any React application. In class components, state management is done with the setState method, but in functional...

Mastering React Hooks: State Management