Files
ArtisanConnectFrontend/ArtisanConnect/app/index.jsx
Patryk 83ee244190 Revert "del init"
This reverts commit 6667a41adc.
2025-04-04 20:36:50 +02:00

15 lines
287 B
JavaScript

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>
);
}