Props in react js
Feb 6, 2024 · 1 min read · 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...
Join discussion