--- 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 ``` Once you have the prop set, you can use this.props in your child component. ```html

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

```