I learned today: Props drilling, UseContext (in Hooks) & discuss about yesterday’s interview questions…
Props Drilling: Props Drilling refers to the process of passing data from a parent component to deeply nested child components by passing it through intermediate components that don’t actually need the data, but just pass it down. ** Example:** import React from “react”; // Parent component that holds the message and passes it down function…