import React from 'react';
import { View, Text } from 'react-native';
export function TreesScreen() {
return (
<View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
<Text>Welcome to the app!</Text>
</View>
);
}