diff options
author | Leon Jiang <35908040+leonyjiang@users.noreply.github.com> | 2020-06-25 16:28:00 -0700 |
---|---|---|
committer | Leon Jiang <35908040+leonyjiang@users.noreply.github.com> | 2020-06-25 16:28:00 -0700 |
commit | bc8184b1a402af0c3e54edb79b38ed8e09a6798d (patch) | |
tree | 2ac23485a81086ab4e5df2989e2002c7e67cd56a /index.js | |
parent | 36a6781faad4380e7c401f32506707c0e48a15f5 (diff) |
cleanup file structure, add react-navigation & basic routes
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); |