mirror of
https://github.com/Sosokker/chefhai.git
synced 2025-12-19 14:04:08 +01:00
10 lines
339 B
TypeScript
10 lines
339 B
TypeScript
import { View, Text } from 'react-native';
|
|
|
|
export default function ProfileScreen() {
|
|
return (
|
|
<View className="flex-1 items-center justify-center bg-white">
|
|
<Text className="text-2xl font-bold">Profile Screen</Text>
|
|
<Text className="mt-2 text-gray-500">Your profile information will appear here</Text>
|
|
</View>
|
|
);
|
|
} |