Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 7375 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
7375 stevensc 1
import React from 'react'
2
import { Route, useHistory } from 'react-router-dom'
3
 
4
const AuthRoute = ({ children, isAuthenticated, ...rest }) => {
5
  const history = useHistory()
6
 
7
  if (isAuthenticated) {
8
    history.push('/dashboard')
7377 stevensc 9
    return null
7375 stevensc 10
  }
11
 
12
  return <Route {...rest}>{children}</Route>
13
}
14
 
15
export default AuthRoute