--- id: 5a24c314108439a4d403616e title: Access Props Using this.props challengeType: 6 isRequired: false --- ## Description
The last several challenges covered the basic ways to pass props to child components. But what if the child component that you're passing a prop to is an ES6 class component, rather than a stateless functional component? The ES6 class component uses a slightly different convention to access props. Anytime you refer to a class component within itself, you use the this keyword. To access props within a class component, you preface the code that you use to access it with this. For example, if an ES6 class component has a prop called data, you write {this.props.data} in JSX.
## Instructions
Render an instance of the ReturnTempPassword component in the parent component ResetPassword. Here, give ReturnTempPassword a prop of tempPassword and assign it a value of a string that is at least 8 characters long. Within the child, ReturnTempPassword, access the tempPassword prop within the strong tags to make sure the user sees the temporary password.
## Tests
```yml tests: - text: The ResetPassword component should return a single div element. testString: assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ResetPassword)); return mockedComponent.children().type() === 'div'; })(), 'The ResetPassword component should return a single div element.'); - text: The fourth child of ResetPassword should be the ReturnTempPassword component. testString: assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ResetPassword)); return mockedComponent.children().childAt(3).name() === 'ReturnTempPassword'; })(), 'The fourth child of ResetPassword should be the ReturnTempPassword component.'); - text: The ReturnTempPassword component should have a prop called tempPassword. testString: assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ResetPassword)); return mockedComponent.find('ReturnTempPassword').props().tempPassword; })(), 'The ReturnTempPassword component should have a prop called tempPassword.'); - text: The tempPassword prop of ReturnTempPassword should be equal to a string of at least 8 characters. testString: assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ResetPassword)); const temp = mockedComponent.find('ReturnTempPassword').props().tempPassword; return typeof temp === 'string' && temp.length >= 8; })(), 'The tempPassword prop of ReturnTempPassword should be equal to a string of at least 8 characters.'); - text: The ReturnTempPassword component should display the password you create as the tempPassword prop within strong tags. testString: assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ResetPassword)); return mockedComponent.find('strong').text() === mockedComponent.find('ReturnTempPassword').props().tempPassword; })(), 'The ReturnTempPassword component should display the password you create as the tempPassword prop within strong tags.'); ```
## Challenge Seed
```jsx class ReturnTempPassword extends React.Component { constructor(props) { super(props); } render() { return (
{ /* change code below this line */ }

Your temporary password is:

{ /* change code above this line */ }
); } }; class ResetPassword extends React.Component { constructor(props) { super(props); } render() { return (

Reset Password

We've generated a new temporary password for you.

Please reset this password from your account settings ASAP.

{ /* change code below this line */ } { /* change code above this line */ }
); } }; ```
### After Test
```js ReactDOM.render(, document.getElementById('root')) ```
## Solution
```js class ReturnTempPassword extends React.Component { constructor(props) { super(props); } render() { return (

Your temporary password is: {this.props.tempPassword}

); } }; class ResetPassword extends React.Component { constructor(props) { super(props); } render() { return (

Reset Password

We've generated a new temporary password for you.

Please reset this password from your account settings ASAP.

{ /* change code below this line */ } { /* change code above this line */ }
); } }; ```