什么是{this.props.children}?何时使用?

作为React世界的初学者,我想深入了解我使用时会发生{this.props.children}什么以及使用该情况的情况。下面的代码片段与它有什么关系?

render() {
  if (this.props.appLoaded) {
    return (
      <div>
        <Header
          appName={this.props.appName}
          currentUser={this.props.currentUser}
        />
        {this.props.children}
      </div>
    );
  }
}