Files

20 lines
528 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
---
For this solution you need to remember first how to add props to your parent component:
```JSX
<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>
```
<!-- The article goes here, in GitHub-flavored Markdown. Feel free to add YouTube videos, images, and CodePen/JSBin embeds -->