mirror of
https://github.com/DocNR/POWR.git
synced 2025-04-23 01:01:27 +00:00
11 lines
264 B
TypeScript
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>
|
||
|
);
|
||
|
}
|