Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 7345 Rev 7347
Línea 3... Línea 3...
3
 
3
 
4
const PublicRoute = ({ children, isAuthenticated, ...rest }) => {
4
const PublicRoute = ({ children, isAuthenticated, ...rest }) => {
Línea 5... Línea 5...
5
  const history = useHistory()
5
  const history = useHistory()
6
 
6
 
7
  if (isAuthenticated) {
7
  if (isAuthenticated) {
8
    history.push('/dashboard')
8
    history.push('/my-coach')
Línea 9... Línea 9...
9
    return
9
    return
10
  }
10
  }