Skip to content

Instantly share code, notes, and snippets.

@franzejr
Created July 7, 2016 12:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save franzejr/c86e17b4c47cd7b83ad1e0c1a93e4a53 to your computer and use it in GitHub Desktop.
Save franzejr/c86e17b4c47cd7b83ad1e0c1a93e4a53 to your computer and use it in GitHub Desktop.
Index iOS - React Native Starter App
import React from 'react';
import {
AppRegistry,
} from 'react-native';
import App from './src/components/App';
const starterApp = () => {
return (
<App />
);
};
AppRegistry.registerComponent('starterApp', () => starterApp);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment