aboutsummaryrefslogtreecommitdiffstats
path: root/app/index.tsx
blob: e352ba540acff2c22a79cdee1f0157deec1b0568 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { Link } from "expo-router";
import { View } from "react-native";

export default function App() {
  return (
    <View className="flex-1 items-center justify-center bg-white">
      <Link href="/signin" className="">
        Signin
      </Link>
    </View>
  );
}