[fix] AppState event handler registration

Fix #151
This commit is contained in:
Nicolas Gallagher
2016-06-21 14:57:53 -07:00
parent eca2f69593
commit af40f98f23
6 changed files with 67 additions and 16 deletions
+4 -1
View File
@@ -1,7 +1,10 @@
import { AppRegistry } from 'react-native'
import App from './components/App'
import Game2048 from './2048/Game2048'
import TicTacToeApp from './TicTacToe/TicTacToe'
AppRegistry.runApplication('TicTacToeApp', {
AppRegistry.registerComponent('App', () => App)
AppRegistry.runApplication('App', {
rootTag: document.getElementById('react-root')
})