From 6e95c8cbeea1b462f385bbfee866f718a4a62842 Mon Sep 17 00:00:00 2001 From: Chris Torres Date: Fri, 6 Dec 2024 17:37:41 -0800 Subject: [PATCH] change name to Login --- App.tsx | 2 +- src/components/GoogleSignInButton.tsx | 2 +- src/components/GoogleSignOutButton.tsx | 2 +- src/screens/{TEMP_NAME => Login}/LoginScreen.tsx | 0 src/screens/{TEMP_NAME => Login}/styles.ts | 0 5 files changed, 3 insertions(+), 3 deletions(-) rename src/screens/{TEMP_NAME => Login}/LoginScreen.tsx (100%) rename src/screens/{TEMP_NAME => Login}/styles.ts (100%) diff --git a/App.tsx b/App.tsx index 8dd1d29..4c9521c 100644 --- a/App.tsx +++ b/App.tsx @@ -7,7 +7,7 @@ import SvgContactUnselected from '@/icons/ContactUnselected'; import SvgHomeSelected from '@/icons/HomeSelected'; import SvgHomeUnselected from '@/icons/HomeUnselected'; import ContactScreen from '@/screens/contact/ContactScreen'; -import LoginScreen from '@/screens/TEMP_NAME/LoginScreen'; +import LoginScreen from '@/screens/Login/LoginScreen'; import TreeSearchScreen from '@/screens/tree_search/TreeSearchScreen'; import { LoginStackParamList } from '@/types/navigation'; diff --git a/src/components/GoogleSignInButton.tsx b/src/components/GoogleSignInButton.tsx index 6842c4d..b1ea27c 100644 --- a/src/components/GoogleSignInButton.tsx +++ b/src/components/GoogleSignInButton.tsx @@ -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/TEMP_NAME/styles'; +import { styles } from '@/screens/Login/styles'; import { LoginStackParamList } from '@/types/navigation'; WebBrowser.maybeCompleteAuthSession(); diff --git a/src/components/GoogleSignOutButton.tsx b/src/components/GoogleSignOutButton.tsx index 1b57ad1..ffba47a 100644 --- a/src/components/GoogleSignOutButton.tsx +++ b/src/components/GoogleSignOutButton.tsx @@ -1,6 +1,6 @@ import { Text, TouchableOpacity } from 'react-native'; import AsyncStorage from '@react-native-async-storage/async-storage'; -import { styles } from '@/screens/TEMP_NAME/styles'; +import { styles } from '@/screens/Login/styles'; export default function GoogleSignOutButton() { return ( diff --git a/src/screens/TEMP_NAME/LoginScreen.tsx b/src/screens/Login/LoginScreen.tsx similarity index 100% rename from src/screens/TEMP_NAME/LoginScreen.tsx rename to src/screens/Login/LoginScreen.tsx diff --git a/src/screens/TEMP_NAME/styles.ts b/src/screens/Login/styles.ts similarity index 100% rename from src/screens/TEMP_NAME/styles.ts rename to src/screens/Login/styles.ts