Understanding React Props
React Props
Before starting with React Props, it's necessary to understand what a React component is.
"Conceptually, React components are like JavaScript functions."
function sayHello(){
return (
<h1>Hola Mundo</h1>
)
}
React components c...
arielrodriguez.hashnode.dev2 min read