mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 21:14:18 +00:00
15 lines
327 B
JavaScript
15 lines
327 B
JavaScript
|
import React, { useContext } from "react"
|
||
|
import ContextLogin from "../contexts/ContextLogin"
|
||
|
import { Redirect } from "react-router"
|
||
|
|
||
|
|
||
|
export default function PageRoot() {
|
||
|
const {state} = useContext(ContextLogin)
|
||
|
|
||
|
if(!state) {
|
||
|
return <Redirect to={"/login"}/>
|
||
|
}
|
||
|
|
||
|
return <Redirect to={"/dashboard"}/>
|
||
|
}
|