Mritunjay Kumarcodecomponents.hashnode.dev·Feb 6, 2024Props in react jsPassing 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...Discuss·1 like#ProgrammingSolutions