You can use this.props.children
:
export class MyComponent extends React.Component {
render() {
return <div>{this.props.children}</div>
}
}
And then write it as a JSX element:
<MyComponent>How do I display this text?</MyComponent>