diff --git a/app/App.tsx b/App.tsx similarity index 80% rename from app/App.tsx rename to App.tsx index b0f10cf..24c3ac9 100644 --- a/app/App.tsx +++ b/App.tsx @@ -2,7 +2,7 @@ import React from 'react'; import {StatusBar} from 'react-native'; import {NavigationContainer} from '@react-navigation/native'; -import BottomTabNavigation from './navigation/BottomTabNavigation'; +import BottomTabNavigation from './src/navigation/BottomTabNavigation'; const App = () => { return ( diff --git a/index.js b/index.js index 7a02d48..a850d03 100644 --- a/index.js +++ b/index.js @@ -3,7 +3,7 @@ */ import {AppRegistry} from 'react-native'; -import App from './app/App'; +import App from './App'; import {name as appName} from './app.json'; AppRegistry.registerComponent(appName, () => App); diff --git a/app/assets/sneak-peak.gif b/src/assets/sneak-peak.gif similarity index 100% rename from app/assets/sneak-peak.gif rename to src/assets/sneak-peak.gif diff --git a/app/components/Button/ButtonComponent.tsx b/src/components/Button/ButtonComponent.tsx similarity index 100% rename from app/components/Button/ButtonComponent.tsx rename to src/components/Button/ButtonComponent.tsx diff --git a/app/components/ConfirmationWrapper/ConfirmationWrapper.tsx b/src/components/ConfirmationWrapper/ConfirmationWrapper.tsx similarity index 100% rename from app/components/ConfirmationWrapper/ConfirmationWrapper.tsx rename to src/components/ConfirmationWrapper/ConfirmationWrapper.tsx diff --git a/app/components/Modal/ModalComponent.tsx b/src/components/Modal/ModalComponent.tsx similarity index 100% rename from app/components/Modal/ModalComponent.tsx rename to src/components/Modal/ModalComponent.tsx diff --git a/app/components/SwipePicker/SwipePicker.tsx b/src/components/SwipePicker/SwipePicker.tsx similarity index 100% rename from app/components/SwipePicker/SwipePicker.tsx rename to src/components/SwipePicker/SwipePicker.tsx diff --git a/app/navigation/BottomTabNavigation.tsx b/src/navigation/BottomTabNavigation.tsx similarity index 100% rename from app/navigation/BottomTabNavigation.tsx rename to src/navigation/BottomTabNavigation.tsx diff --git a/app/screens/FadeScreen.tsx b/src/screens/FadeScreen.tsx similarity index 100% rename from app/screens/FadeScreen.tsx rename to src/screens/FadeScreen.tsx diff --git a/app/screens/RotateScreen.tsx b/src/screens/RotateScreen.tsx similarity index 100% rename from app/screens/RotateScreen.tsx rename to src/screens/RotateScreen.tsx diff --git a/app/screens/SlideScreen.tsx b/src/screens/SlideScreen.tsx similarity index 100% rename from app/screens/SlideScreen.tsx rename to src/screens/SlideScreen.tsx diff --git a/app/screens/UtilsScreen.tsx b/src/screens/UtilsScreen.tsx similarity index 100% rename from app/screens/UtilsScreen.tsx rename to src/screens/UtilsScreen.tsx diff --git a/app/theme/theme.ts b/src/theme/theme.ts similarity index 100% rename from app/theme/theme.ts rename to src/theme/theme.ts