mirror of
https://github.com/zoriya/react-native-web.git
synced 2026-05-21 22:08:42 +00:00
8 lines
232 B
JavaScript
8 lines
232 B
JavaScript
import React, { AppRegistry } from 'react-native'
|
|
import Game2048 from './2048/Game2048'
|
|
import TicTacToeApp from './TicTacToe/TicTacToe'
|
|
|
|
AppRegistry.runApplication('Game2048', {
|
|
rootTag: document.getElementById('react-root')
|
|
})
|