POWR/app/(tabs)/profile.tsx

9 lines
228 B
TypeScript

import { View, Text } from 'react-native';
export default function ProfileScreen() {
return (
<View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
<Text>Profile Screen</Text>
</View>
);
}