21 lines
506 B
TypeScript
21 lines
506 B
TypeScript
import { Link } from "expo-router";
|
|
import { Text, View } from "react-native";
|
|
|
|
export default function Index() {
|
|
return (
|
|
<View
|
|
style={{
|
|
flex: 1,
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
}}
|
|
>
|
|
<Text className="font-bold text-lg mt-10">Welcome to mobile.mk</Text>
|
|
<Link href="/signin">SignIn</Link>
|
|
<Link href="/explore">explore</Link>
|
|
<Link href="/profile">profile</Link>
|
|
<Link href="/cars/1">car</Link>
|
|
</View>
|
|
);
|
|
}
|