componentDidMount()

in src/components/auth/VerifyAccount.js [17:23]


  componentDidMount() {
    const locationState = this.props.location.state;

    if (locationState && locationState.username) {
      this.setState({ username: locationState.username });
    }
  }