Answers for "redirect to another react page"

8

react redirect to url

import { Route, Redirect } from 'react-router'

<Route exact path="/" render={() => (
  loggedIn ? (
    <Redirect to="/dashboard"/>
  ) : (
    <PublicHomePage/>
  )
)}/>
Posted by: Guest on July-20-2020
-1

how to redirect to a website in react

window.location.href = 'http://domain.com';
Posted by: Guest on February-22-2021

Code answers related to "redirect to another react page"

Code answers related to "Javascript"

Browse Popular Code Answers by Language