21 lines
532 B
TypeScript
21 lines
532 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 my-10 uppercase">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>
|
|
);
|
|
}
|