diff --git a/squarenotsquare/navigation/SquareStack.js b/squarenotsquare/navigation/SquareStack.js index 7f84b2b..d62f4e4 100644 --- a/squarenotsquare/navigation/SquareStack.js +++ b/squarenotsquare/navigation/SquareStack.js @@ -3,11 +3,11 @@ import {NavigationContainer} from '@react-navigation/native'; import {createStackNavigator} from '@react-navigation/stack'; import {squareRef} from './SquareNav'; -import Home from '../components/Home'; -import Game from '../components/Game'; -import HighScore from '../components/HighScore'; -import Settings from '../components/Settings'; -import Splash from '../components/Splash'; +import Home from '../screens/Home'; +import Game from '../screens/Game'; +import HighScore from '../screens/HighScore'; +import Settings from '../screens/Settings'; +import Splash from '../screens/Splash'; const SquareNav = createStackNavigator();