diff --git a/client-new/src/navigation/AppStack.tsx b/client-new/src/navigation/AppStack.tsx index 40c5f0c..712db13 100644 --- a/client-new/src/navigation/AppStack.tsx +++ b/client-new/src/navigation/AppStack.tsx @@ -1,5 +1,6 @@ import { createNativeStackNavigator } from "@react-navigation/native-stack"; import HomeScreen from "../screens/app/HomeScreen"; +import GuideScreen from "../screens/app/GuideScreen"; const Stack = createNativeStackNavigator(); @@ -11,6 +12,7 @@ export default function AppStack() { headerShown: false, }}> + ); } \ No newline at end of file diff --git a/client-new/src/screens/app/Guide.tsx b/client-new/src/screens/app/GuideScreen.tsx similarity index 99% rename from client-new/src/screens/app/Guide.tsx rename to client-new/src/screens/app/GuideScreen.tsx index 71bbc37..33c121c 100644 --- a/client-new/src/screens/app/Guide.tsx +++ b/client-new/src/screens/app/GuideScreen.tsx @@ -11,7 +11,7 @@ import { name: string; }; PROPS INPUT */ -const Guide = (/*NO PROPS*/) => { +const GuideScreen = (/*NO PROPS*/) => { return ( @@ -153,4 +153,4 @@ const styles = StyleSheet.create({ }, }); -export default Guide; +export default GuideScreen;