mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-03-29 00:38:18 +08:00
8 lines
225 B
JavaScript
8 lines
225 B
JavaScript
import { AppRegistry } from 'react-native'
|
|
import Game2048 from './2048/Game2048'
|
|
import TicTacToeApp from './TicTacToe/TicTacToe'
|
|
|
|
AppRegistry.runApplication('Game2048', {
|
|
rootTag: document.getElementById('react-root')
|
|
})
|