mirror of
https://github.com/DocNR/POWR.git
synced 2025-04-23 01:01:27 +00:00
9 lines
222 B
TypeScript
9 lines
222 B
TypeScript
import { View, Text } from 'react-native';
|
|
|
|
export default function HomeScreen() {
|
|
return (
|
|
<View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
|
|
<Text>Home Screen</Text>
|
|
</View>
|
|
);
|
|
} |