--- id: 5a24c314108439a4d403616e title: Access Props Using this.props challengeType: 6 isRequired: false videoUrl: '' localeTitle: Доступ к реквизитам с помощью this.props --- ## Description
Последние несколько проблем касались основных способов передачи реквизита дочерним компонентам. Но что, если дочерний компонент, которому вы передаете реквизит, является компонентом класса ES6, а не функциональным компонентом без состояния? Компонент класса ES6 использует несколько другое соглашение для доступа к реквизитам. Каждый раз, когда вы ссылаетесь на компонент класса внутри себя, вы используете ключевое слово this . Чтобы получить доступ к реквизиту в компоненте класса, вы начинаете код, используемый для доступа к нему с this . Например, если компонент класса ES6 имеет ревизит под названием data , вы пишете {this.props.data} в JSX.
## Instructions
Визуализируйте инстанцию компонента ReturnTempPassword в родительском компоненте ResetPassword . Здесь дайте ReturnTempPassword реквизит от tempPassword и присвойте ему значение строки длиной не менее 8 символов. Внутри дочернего елемента ReturnTempPassword , обратитесь к реквизиту tempPassword в тегах strong , чтобы убедиться, что пользователь видит временный пароль.
## Tests
```yml tests: - text: Компонент ResetPassword должен возвращать один элемент div . 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: '' 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: '' 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: '' 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: '' 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 console.info('after the test'); ```
## Solution
```js // solution required ```