Skip to content

Commit

Permalink
rename files
Browse files Browse the repository at this point in the history
  • Loading branch information
christophertorres1 committed Dec 4, 2024
1 parent 3633c28 commit 51021e2
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 17 deletions.
2 changes: 1 addition & 1 deletion App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { DefaultTheme, NavigationContainer } from '@react-navigation/native';
import { createNativeStackNavigator } from '@react-navigation/native-stack';
import AllTreesScreen from '@/screens/all_trees/AllTreesScreen';
import AvailableTreesScreen from '@/screens/available_trees/AvailableTreesScreen';
import LoginScreen from '@/screens/login/LoginScreen';
import LoginScreen from '@/screens/Login/Login';
import { LoginStackParamList } from '@/types/navigation';

const Stack = createNativeStackNavigator<LoginStackParamList>();
Expand Down
2 changes: 1 addition & 1 deletion src/components/GoogleSignInButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import * as Google from 'expo-auth-session/providers/google';
import * as WebBrowser from 'expo-web-browser';
import AsyncStorage from '@react-native-async-storage/async-storage';
import { NativeStackScreenProps } from '@react-navigation/native-stack';
import { styles } from '@/screens/login/styles';
import { styles } from '@/screens/Login/styles';
import { LoginStackParamList } from '@/types/navigation';

WebBrowser.maybeCompleteAuthSession();
Expand Down
2 changes: 1 addition & 1 deletion src/components/GoogleSignOutButton.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Text, TouchableOpacity } from 'react-native';
import AsyncStorage from '@react-native-async-storage/async-storage';
import { styles } from '@/screens/login/styles';
import { styles } from '@/screens/Login/styles';

export default function GoogleSignOutButton() {
return (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { StyleSheet, Text } from 'react-native';

export default function AllTreesScreen() {
return <Text style={styles.text}>All Trees</Text>;
export default function TreeSearchScreen() {
return <Text style={styles.text}>Tree SEarch</Text>;
}

const styles = StyleSheet.create({
Expand Down
12 changes: 0 additions & 12 deletions src/screens/available_trees/AvailableTreesScreen.tsx

This file was deleted.

File renamed without changes.

0 comments on commit 51021e2

Please sign in to comment.