Files
react-native-web/examples/index.js
Nicolas Gallagher 62d1a0f83d Add Game2048 example
2016-03-16 00:55:04 -07:00

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')
})