diff options
author | Husam Salhab <47015061+hsalhab@users.noreply.github.com> | 2020-06-26 12:53:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-26 12:53:50 -0400 |
commit | cdbf153a09e20b3483926bf2cd80d600105fbeae (patch) | |
tree | 48cc1d99384455af3e8a4c688ca42666c47e1a8f /index.js | |
parent | 36a6781faad4380e7c401f32506707c0e48a15f5 (diff) | |
parent | 69bc5a72f72e847f42d8486ad29161f1e21239d3 (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.js | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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); |