1
ReactBeginner#jsx
children is whatever a component wraps, letting you build generic layout and wrapper components instead of coupling them to specific content.
function Card({ title, children }) {
return <div className="card"><h3>{title}</h3>{children}</div>;
}
<Card title="Stats"><Chart /></Card>