Files

24 lines
484 B
Markdown
Raw Normal View History

2018-10-12 15:37:13 -04:00
---
title: Access Props Using this.props
---
# Access Props Using this.props
2018-10-12 15:37:13 -04:00
---
## Solutions
<details><summary>Solution 1 (Click to Show/Hide)</summary>
2018-10-12 15:37:13 -04:00
For this solution you need to remember first how to add props to your parent component:
```JSX
2018-10-12 15:37:13 -04:00
<ReturnTempPassword tempPassWord="xxxxxxxx" />
```
Once you have the prop set, you can use this.props in your child component.
```html
<p>Your temporary password is: <strong>{this.props.tempPassword}</strong></p>
```
</details>