Props, props drilling and useContext Hook
What is Props?
Props stands for properties.
Props are used to transferdata from one component to other another.
Props are read-only.
Props are just like a function in JavaScript.
Example of Props:
App.jsx
import React from 'react';
import './Ap...
rahul319.hashnode.dev6 min read