about summary refs log tree commit diff
path: root/index.js
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2022-09-09 11:29:22 -0500
committerPaul Frazee <pfrazee@gmail.com>2022-09-09 11:29:22 -0500
commiteffe3d6b59bcbc2288528021ba73f1596bcf8a1c (patch)
tree50323928dd91505df27d53eeae7f6f52db2df791 /index.js
parent35556a84b233a3f8feb63b4465c8b9e5e8fc50c0 (diff)
downloadvoidsky-effe3d6b59bcbc2288528021ba73f1596bcf8a1c.tar.zst
Rename mobile start-point index.js to avoid build issues
Diffstat (limited to 'index.js')
-rw-r--r--index.js9
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)