Props in react js
Passing props is a more complicated method for some beginners. Some people easily pass the props from parents to child just like that.
Pass props parents to child
const Child = ({myProps})=>{
return(
<h1>{myProps}</h1>
)
}
export default func...