React props allow you to send data numbers, stings, functions, objects, arrays etc. if have many components then you can pass data fromone components to another components.Pass props between componnets, you would add them when the componnt is called wehn callingon a regular javascript fucntion.
import React from 'react';
import ReactDOM from 'react-dom';
function PercentageStat({ label, score = 0, total = Math.max(1, score) }) {
return (
{ label }
{ Math.round(score / total * 100) }%
)
}
function App() {
return (
Male Population
)
}
Top comments (0)