diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-06-09 13:03:25 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-06-09 13:03:25 -0500 |
commit | d6942bffab68ce80d5cb26b42710dd9276f62ded (patch) | |
tree | 309f8d64f95d526d3cae6c00611c93b04f12944e /src/index.js | |
parent | 92ca49ab9a309510a5503a4df6a0ebcfba30f918 (diff) | |
download | voidsky-d6942bffab68ce80d5cb26b42710dd9276f62ded.tar.zst |
Add state management
Diffstat (limited to 'src/index.js')
-rw-r--r-- | src/index.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/index.js b/src/index.js index 52c30a178..45a06f40a 100644 --- a/src/index.js +++ b/src/index.js @@ -2,11 +2,11 @@ * @format */ -import {AppRegistry} from 'react-native'; -import App from './App'; +import {AppRegistry} from 'react-native' +import App from './App' -AppRegistry.registerComponent('App', () => App); +AppRegistry.registerComponent('App', () => App) AppRegistry.runApplication('App', { rootTag: document.getElementById('root'), -}); +}) |