Closer/app/index.tsx

10 lines
269 B
TypeScript

import { Text, View } from 'react-native';
export default function HomeScreen() {
return (
<View className="flex-1 items-center justify-center bg-white">
<Text className="text-2xl font-bold text-gray-900">Hello, Relationship App!</Text>
</View>
);
}