How To Pass Props To Components In React
props is short for 'property'. It allows you to pass information from the parent component to the child component. In other words, we pass props as an argument to the child components :
const Child = (props) => {}
in this article, we're going to lea...
nazanin-ashrafi.hashnode.dev5 min read
Njong Emy
Frontend developer intern | Technical writer
Amazing article, Nazanin! 💜💜 props for me were always a bit hard to get, but with digestible articles like these, it's a breeze.