aboutsummaryrefslogtreecommitdiff
path: root/index.js
diff options
context:
space:
mode:
authorHusam Salhab <47015061+hsalhab@users.noreply.github.com>2020-06-26 12:53:50 -0400
committerGitHub <noreply@github.com>2020-06-26 12:53:50 -0400
commitcdbf153a09e20b3483926bf2cd80d600105fbeae (patch)
tree48cc1d99384455af3e8a4c688ca42666c47e1a8f /index.js
parent36a6781faad4380e7c401f32506707c0e48a15f5 (diff)
parent69bc5a72f72e847f42d8486ad29161f1e21239d3 (diff)
Merge pull request #7 from leonyjiang/tma58-react-navigation-setup
[TMA-58] Cleanup file structure & add react-navigation
Diffstat (limited to 'index.js')
-rw-r--r--index.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/index.js b/index.js
index a850d031..4117260f 100644
--- a/index.js
+++ b/index.js
@@ -2,8 +2,9 @@
* @format
*/
+import 'react-native-gesture-handler';
import {AppRegistry} from 'react-native';
-import App from './App';
+import App from './src';
import {name as appName} from './app.json';
AppRegistry.registerComponent(appName, () => App);