RyanHub - file viewer
filename: app/src/screens/TreesScreen.tsx
branch: main
back to repo
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>
  );
}