Category: React JS

Showing all posts with category React JS

2025-04-14 11:35:30

React Props

In  React component-based library , The user interface is broken down into small, reusable components. Sometimes it's necessary for those parts to talk to each other or exchange data, and props are a great method to do so. 

2025-04-18 13:00:27

Manage state in React applications

State management in React apps entails handling data that changes over time and influences the component's rendering.

 

In React Applications State can be Local Or Global

  • Local State: Managed via useState Hook. 
  • Global State: Managed using Context API or state management libraries like Redux or MobX