diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-09-09 11:29:22 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-09-09 11:29:22 -0500 |
commit | effe3d6b59bcbc2288528021ba73f1596bcf8a1c (patch) | |
tree | 50323928dd91505df27d53eeae7f6f52db2df791 /index.js | |
parent | 35556a84b233a3f8feb63b4465c8b9e5e8fc50c0 (diff) | |
download | voidsky-effe3d6b59bcbc2288528021ba73f1596bcf8a1c.tar.zst |
Rename mobile start-point index.js to avoid build issues
Diffstat (limited to 'index.js')
-rw-r--r-- | index.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/index.js b/index.js new file mode 100644 index 000000000..2d2c9ca44 --- /dev/null +++ b/index.js @@ -0,0 +1,9 @@ +/** + * @format + */ + +import {AppRegistry} from 'react-native' +import App from './src/App' +import {name as appName} from './src/app.json' + +AppRegistry.registerComponent(appName, () => App) |