mirror of
https://github.com/zoriya/react-native-web.git
synced 2026-05-20 13:32:14 +00:00
af40f98f23
Fix #151
11 lines
304 B
JavaScript
11 lines
304 B
JavaScript
import { AppRegistry } from 'react-native'
|
|
import App from './components/App'
|
|
import Game2048 from './2048/Game2048'
|
|
import TicTacToeApp from './TicTacToe/TicTacToe'
|
|
|
|
AppRegistry.registerComponent('App', () => App)
|
|
|
|
AppRegistry.runApplication('App', {
|
|
rootTag: document.getElementById('react-root')
|
|
})
|