[UPD] paths with the moved files

This commit is contained in:
Chloé CHAUVIN
2022-09-26 12:28:34 +02:00
parent 41dd60aabc
commit 048e36d023
+2 -2
View File
@@ -1,7 +1,7 @@
import { createNativeStackNavigator } from '@react-navigation/native-stack';
import React from 'react';
import AuthenticationView from './views/AuthenticationView';
import HomeView from './views/HomeView';
import HomeView from './views/HomeView/HomeView';
import { NavigationContainer } from '@react-navigation/native';
import { useSelector } from 'react-redux';
import SongLobbyView from './views/SongLobbyView';
@@ -10,7 +10,7 @@ import { translate } from './i18n/i18n';
const Stack = createNativeStackNavigator();
export const protectedRoutes = <>
<Stack.Screen name="Home" component={HomeView} options={{ title: translate('welcome') }} />
<Stack.Screen name="Home" component={HomeView} options={{ title: translate('welcome') }}/>
<Stack.Screen name="Song" component={SongLobbyView} options={{ title: translate('play') }} />
</>;