1
1
mirror of https://github.com/theoludwig/p61-project.git synced 2024-07-17 07:00:12 +02:00
p61-project/app/index.tsx

16 lines
354 B
TypeScript
Raw Permalink Normal View History

import { Redirect } from "expo-router"
import { useAuthentication } from "@/presentation/react/contexts/Authentication"
2024-02-16 22:51:50 +01:00
const HomePage: React.FC = () => {
const { user } = useAuthentication()
2024-02-16 22:51:50 +01:00
if (user == null) {
2024-05-20 15:05:34 +02:00
return <Redirect href="/authentication/about" />
}
2024-03-23 01:43:27 +01:00
return <Redirect href="/application/habits/" />
}
2024-02-16 22:51:50 +01:00
export default HomePage