diff options
Diffstat (limited to 'index.native.js')
-rw-r--r-- | index.native.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/index.native.js b/index.native.js new file mode 100644 index 000000000..c39990524 --- /dev/null +++ b/index.native.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); |