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

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