11 lines
339 B
TypeScript
11 lines
339 B
TypeScript
import { View, Text } from 'react-native';
|
|
|
|
export default function HomeScreen() {
|
|
return (
|
|
<View className="flex-1 items-center justify-center bg-secondary">
|
|
<Text className="text-2xl font-bold text-primary">TerritoryLog</Text>
|
|
<Text className="text-charcoal mt-2">Dashboard coming in Sprint 2</Text>
|
|
</View>
|
|
);
|
|
}
|