Created
April 13, 2016 07:07
-
-
Save lesniakania/362df802e828dddca47cc9d0b70ffd7e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'use strict'; | |
| import React, { | |
| AppRegistry, | |
| Component, | |
| StyleSheet, | |
| Text, | |
| View | |
| } from 'react-native'; | |
| import App from './src/components/App.js'; | |
| class OcenyMobile extends Component { | |
| render() { | |
| return ( | |
| <App /> | |
| ); | |
| } | |
| } | |
| AppRegistry.registerComponent('OcenyMobile', () => OcenyMobile); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment