Add initial first test screen
This commit is contained in:
14
ArtisanConnect/app/index.jsx
Normal file
14
ArtisanConnect/app/index.jsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import { Text, View, Pressable } from "react-native";
|
||||
import { Link } from "expo-router";
|
||||
export default function Index() {
|
||||
return (
|
||||
<View>
|
||||
|
||||
<Link href="/notices" asChild>
|
||||
<Pressable>
|
||||
<Text>Notices</Text>
|
||||
</Pressable>
|
||||
</Link>
|
||||
</View>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user