Skip to content

Instantly share code, notes, and snippets.

@ckdevrel
Last active October 31, 2017 17:59
Show Gist options
  • Save ckdevrel/b020ae6d018d589b9f9c2dfa7bc93187 to your computer and use it in GitHub Desktop.
Save ckdevrel/b020ae6d018d589b9f9c2dfa7bc93187 to your computer and use it in GitHub Desktop.
import React from 'react';
import { Text, AppRegistry } from 'react-native';
const App = () => (
<Text>Hello Component!</Text>
);
AppRegistry.registerComponent('ComponentDemo', () => App);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment