From effe3d6b59bcbc2288528021ba73f1596bcf8a1c Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Fri, 9 Sep 2022 11:29:22 -0500 Subject: Rename mobile start-point index.js to avoid build issues --- index.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 index.js (limited to 'index.js') 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) -- cgit 1.4.1