Last box won't tick

Tell us what’s happening:
I’ve written my code and it displays everything just fine. But the last challenge won’t complete and I have no idea why.

Your code so far


class ReturnTempPassword extends React.Component {
constructor(props) {
  super(props);

}
render() {
  return (
      <div>
          { /* change code below this line */ }
          <p>Your temporary password is: <strong> {this.props.tempPassword} </strong></p>
          { /* change code above this line */ }
      </div>
  );
}
};

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

}
render() {
  return (
      <div>
        <h2>Reset Password</h2>
        <h3>We've generated a new temporary password for you.</h3>
        <h3>Please reset this password from your account settings ASAP.</h3>
        { /* change code below this line */ }
        <ReturnTempPassword tempPassword = "12345678" />
        { /* change code above this line */ }
      </div>
  );
}
};

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36.

Challenge: Access Props Using this.props

Link to the challenge:

If i run your code i get the next error:
The ReturnTempPassword component should display the password you create as the tempPassword prop within strong tags.

Yes, I am asking how to fix this since on the side display it’s displaying my tempPassword which is 12345678

Sorry I somehow have put white space between the tag and the {

you might have to much SPACE