React-条件渲染:渲染页面或重定向到其他路由

我创建了一个登录表单和一个受保护的路由。我想跳过渲染登录表单并重定向到另一个页面。我怎样才能做到这一点?

render() {
    if (isAuthenticated()) {      
      // TODO how redirect to another page??
    } else {
      return (
        <Container>
          ...
        </Container>
      );
    }

  }