POWR/app/(tabs)/social.tsx

9 lines
226 B
TypeScript

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