diff options
Diffstat (limited to 'src/index.js')
-rw-r--r-- | src/index.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/index.js b/src/index.js new file mode 100644 index 000000000..52c30a178 --- /dev/null +++ b/src/index.js @@ -0,0 +1,12 @@ +/** + * @format + */ + +import {AppRegistry} from 'react-native'; +import App from './App'; + +AppRegistry.registerComponent('App', () => App); + +AppRegistry.runApplication('App', { + rootTag: document.getElementById('root'), +}); |