Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 7375 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 7375 Rev 7377
Línea 4... Línea 4...
4
const AuthRoute = ({ children, isAuthenticated, ...rest }) => {
4
const AuthRoute = ({ children, isAuthenticated, ...rest }) => {
5
  const history = useHistory()
5
  const history = useHistory()
Línea 6... Línea 6...
6
 
6
 
7
  if (isAuthenticated) {
7
  if (isAuthenticated) {
8
    history.push('/dashboard')
8
    history.push('/dashboard')
9
    return
9
    return null
Línea 10... Línea 10...
10
  }
10
  }
11
 
11