Add state management

This commit is contained in:
Paul Frazee 2022-06-09 13:03:25 -05:00
parent 92ca49ab9a
commit d6942bffab
17 changed files with 340 additions and 133 deletions

View file

@ -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'),
});
})