Skip to content

Instantly share code, notes, and snippets.

@lesniakania
Created April 13, 2016 07:07
Show Gist options
  • Select an option

  • Save lesniakania/362df802e828dddca47cc9d0b70ffd7e to your computer and use it in GitHub Desktop.

Select an option

Save lesniakania/362df802e828dddca47cc9d0b70ffd7e to your computer and use it in GitHub Desktop.
'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