Languages
[Edit]
EN

React - render props (class component)

0 points
Created by:
Adnaan-Robin
664

In this article, we would like to show you how to render props in React class components.

Below we create Container class component which renders name and two children <div> elements passed as props.

Runnable example:

// ONLINE-RUNNER:browser;

// Note: Uncomment import lines while working with React project.
// import React from 'react';
// import ReactDOM from 'react-dom';

class Container extends React.Component {
    constructor(props) {
        super(props);
    }
    render() {
        return (
            <div>
              <div>{this.props.name}</div>
              <div>{this.props.children}</div>
            </div>
        );
    }
}

class App extends React.Component {
    constructor(props) {
        super(props);
    }
    render() {
        return (
            <Container name="Property name ...">
              <div>Children text ...</div>
              <div>Children text ...</div>
            </Container>
        );
    }
}

const root = document.querySelector('#root');
ReactDOM.render(<App />, root );

See also

  1. React - render props (functional component) 

Alternative titles

  1. React - pass children elements to class component
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

ReactJS

React - render props (class component)
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join