Set Properties on React Components

InstructorJoe Maddalone

Share this video with your friends

Send Tweet

This lesson will teach you the basics of setting properties (props) in your React components. As stated in Thinking in React, props are how we pass data around in React. We will take a look at what propTypes and defaultProps do for us in React.

Rick
~ 9 years ago

The HTML code for this lesson does not have a <script> tag to include JSXTransformer.js. That was included in the preceding lessons, and I had to add it to get this lesson to work on my machine. Otherwise I just get a blank screen in the browser.

However, I see that on jsbin.com your code for this lesson is working just fine without including JSXTransformer.js. Why do I need to include JSXTransformer.js but you don't?

leonardo
~ 9 years ago

I cant see any warning when a field is required and i have the same code as the video, why?

amitgaur
~ 9 years ago

What version of react are you using? I believe its not required in the newer versions of react.

Evgeny Likhoded
~ 9 years ago

I cant see any warning when a field is required and i have the same code as the video, why?

I have the same issue. Having looked on StackOverflow, the reason seems to be that only the development version of React shows the warnings for isRequired violations. The JSbin for this tutorial uses the production version- react.min.js, instead of the development version- react.js.

So, switch this line:

<script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.13.2/react.min.js"></script>

For this line:

<script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.13.2/react.js"></script>
~ 9 years ago

I was pretty confused following along with this lesson having started with the first tutorial video in this series. That video has you set up a React environment and in the main.js file of that app is the line:

ReactDOM.render(<App />, document.getElementById('app'));

That line is apparently at odds with the ReactDOM.render line in the tutorial above. This caused my webpage to show nothing at all.

Unless I missed something in the tutorials after the first one, maybe you guys should make it more clear what to do. But again, I may have missed that.

Joe Maddaloneinstructor
~ 9 years ago

Good catch. I'll see about updating this lesson, I believe it's the only one that deviates from that pattern. main.js in this case should simply be:

import App from './App';
Rajitha
~ 9 years ago

How are you getting the auto completion from reactTypes?

Andy
~ 7 years ago

For anyone else getting a fatal error from propTypes, see this post https://stackoverflow.com/questions/43302963/how-to-fix-react-15-5-3-proptypes-deprecated-warning-when-using-create-react-app

Basically deprecation.

Dmitry Guryev
~ 7 years ago

React.PropTypes are deprecated in React 16, this example doesn't work.

Fix: import PropTypes from 'prop-types'; ... txt: PropTypes.string

etc.

vineet
~ 7 years ago

React.PropTypes is deprectated.

After react v15.5, instead of accessing PropTypes from main React object ( React.PropTypes ), install prop-types package and import it in your app.

https://reactjs.org/blog/2017/04/07/react-v15.5.0.html#migrating-from-react.proptypes

Mariusz
~ 7 years ago

Worth noting that React.PropTypes have now been removed from React core, so you need to install them as a separate package that doesn't come with create-react-app. The new workflow requires installing PropTypes package with:

$ npm i --save prop-types

And then importing PropTypes with import PropTypes from 'prop-types' and using PropTypes instead of React.PropTypes in your code.

Vishwas Chouhan
~ 7 years ago

React.PropTypes.string is throwing an error. TypeError: Cannot read property 'string' of undefined

Vishwas Chouhan
~ 7 years ago

@Joe, The App.propTypes and App.defaultProps does not work. Has this changed in the latest version when you use create-react-app to setup.

Kenzan
~ 7 years ago

Might want to update the lesson or put in a warning. I got the following warning in the console when following along. "React.PropTypes is deprecated since React 15.5.0, use the npm module prop-types instead."

isaac
~ 7 years ago

The content need to be updated as React.PropTypes is deprecated since React 15.5.0, use the npm module prop-types instead react/no-deprecated

isaac
~ 7 years ago

The updated code for App.js should be

import React from "react";
import PropTypes from "prop-types";

class App extends React.Component{
  render(){
    let txt = this.props.txt
    return( <h1>{txt}</h1> )
  }
}

App.propTypes = {
  txt: PropTypes.string,
  cat: PropTypes.number.isRequired
}

export default App
Philip John
~ 6 years ago

Updated Code for App.js

import React from 'react';
import PropTypes from 'prop-types';

class App extends React.Component {
  render() {
    let txt = this.props.txt;
    return (
      <div>
        <h1>{txt}</h1>
      </div>
    );
  }
}

App.propTypes = {
  txt: PropTypes.string,
  cat: PropTypes.number.isRequired
};

App.defaultProps = {
  txt: 'this is the default txt'
};

export default App;