state = { redirect: null }; render() { if (this.state.redirect) { return <Redirect to={this.state.redirect} /> } return( // Your Code goes here ) } // update the redirect this.setState({ redirect: "/someRoute" });