forked from fr/deguapp
10 lines
231 B
JavaScript
10 lines
231 B
JavaScript
import { Redirect, Link } from "expo-router";
|
|
import { Text, View } from "react-native";
|
|
import { AuthProvider } from "./context/AuthContext";
|
|
|
|
function HomePage() {
|
|
return <Redirect href="/login" />;
|
|
}
|
|
|
|
export default HomePage;
|