mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-03-28 08:18:49 +08: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')
|
|
})
|