Answers for "how to redirect to a url after a get request react"

14

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
2

how to send data between components in react with redirect

<Redirect
  to={{
    pathname: "/page",
    state: data // your data array of objects
  }}
>
Posted by: Guest on September-07-2021

Code answers related to "how to redirect to a url after a get request react"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language