10 lines
269 B
TypeScript
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>
|
||
|
|
);
|
||
|
|
}
|