Props in React
In React, "props" (short for "properties") are a way for a parent component to pass data to a child component.
For eg-
//component file
import React from 'react'
import PropTypes from 'prop-types'
// shorthand for the above line-impt
function Greet...
disha.hashnode.dev2 min read