React Props

Props stand for "Properties." They are read-only components. It is an object which stores the value of attributes of a tag and work similar to the HTML attributes. It gives a way to pass data from one component to other components. It is similar to function arguments. Props are passed to the component in the same way as arguments passed in a function.

Props are immutable so we cannot modify the props from inside the component. Inside the components, we can add attributes called props. These attributes are available in the component as this.props and can be used to render dynamic data in our render method.

When you need immutable data in the component, you have to add props to reactDom.render() method in the main.js file of your ReactJS project and used it inside the component in which you need. It can be explained in the below example.

Example

App.js

snippet
import React, { Component } from 'react';
class App extends React.Component {
   render() {	
      return (
          

Welcome to { this.props.name }

rookienerd is one of the best Java training institute in Noida, Delhi, Gurugram, Ghaziabad and Faridabad.

); } } export default App;

Main.js

snippet
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App.js';

ReactDOM.render(, document.getElementById('app'));

Output

ReactJS Props

Default Props

It is not necessary to always add props in the reactDom.render() element. You can also set default props directly on the component constructor. It can be explained in the below example.

Example

App.js

snippet
import React, { Component } from 'react';
class App extends React.Component {
   render() {	
      return (
          

Default Props Example

Welcome to {this.props.name}

rookienerd is one of the best Java training institute in Noida, Delhi, Gurugram, Ghaziabad and Faridabad.

); } } App.defaultProps = { name: "rookienerd" } export default App;

Main.js

snippet
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App.js';

ReactDOM.render(, document.getElementById('app'));

Output

ReactJS Props

State and Props

It is possible to combine both state and props in your app. You can set the state in the parent component and pass it in the child component using props. It can be shown in the below example.

Example

App.js

snippet
import React, { Component } from 'react';
class App extends React.Component {
   constructor(props) {
      super(props);
      this.state = {
         name: "rookienerd",       
      }
   }
   render() {
      return (
         
); } } class JTP extends React.Component { render() { return (

State & Props Example

Welcome to {this.props.jtpProp}

rookienerd is one of the best Java training institute in Noida, Delhi, Gurugram, Ghaziabad and Faridabad.

); } } export default App;

Main.js

snippet
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App.js';

ReactDOM.render(, document.getElementById('app'));

Output:

ReactJS Props
Related Tutorial
Follow Us
https://www.facebook.com/Rookie-Nerd-638990322793530 https://twitter.com/RookieNerdTutor https://plus.google.com/b/117136517396468545840 #
Contents +