React — UseContext Hooks

  Prop Drilling Prop drilling is the process to get data to parts of the React Component tree, and Context API provides a way to share values between different Components, without having to explicitly pass a prop through every level. The context API allows better performance. UseContext “useContext” hook is used to create common data […]