This repository has been archived on 2024-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
p61-project/app/index.tsx

16 lines
354 B
TypeScript
Raw 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