POWR/app/(tabs)/index.tsx
2025-02-09 20:38:38 -05:00

11 lines
264 B
TypeScript

// app/(tabs)/index.tsx
import { View } from 'react-native';
import { Text } from '@/components/ui/text';
export default function HomeScreen() {
return (
<View className="flex-1 items-center justify-center">
<Text>Home Screen</Text>
</View>
);
}