Content deleted Content added
Line 61:
=== Two-way data flow with states ===
States hold values throughout the component and can be passed to child components through props:
<syntaxhighlight class ParentComponent extends React.Component {
state = { color: 'red' };
render() {▼
▲render() {
return (
}
}
</syntaxhighlight>
|