diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-06-07 18:56:31 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-06-07 18:56:31 -0500 |
commit | efe65e70d7f8a4f30e4c780c5fdb56f3c81f377e (patch) | |
tree | 702ad3a06f6438e2c33c3039938729599e063837 /index.js | |
parent | 1a1d313801b5ad6ff6cf182881c615b864cfc21d (diff) | |
download | voidsky-efe65e70d7f8a4f30e4c780c5fdb56f3c81f377e.tar.zst |
Add basic react-navigator usage
Diffstat (limited to 'index.js')
-rw-r--r-- | index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/index.js b/index.js index a850d031d..69303b34d 100644 --- a/index.js +++ b/index.js @@ -3,7 +3,7 @@ */ import {AppRegistry} from 'react-native'; -import App from './App'; +import App from './src/App'; import {name as appName} from './app.json'; AppRegistry.registerComponent(appName, () => App); |