Describe what props.children does
Read more about props.children helper methods
A collection of the children inside of a component...
Let's see an example
class App extends Component { render() { return ( <Row> <p>Timothy</p> <div>Moxie</div> <h1>React</h1> </Row> ); } }
class Row extends Component { render() { return ( <div style={{ display: 'flex', flexDirection: 'row', justifyContent: 'space-around', }}> {this.props.children} </div> ) } }
http://mxstbr.blog/2017/02/
react-children-deepdive/
By Elie Schoppik