Skip to content

Instantly share code, notes, and snippets.

@edutrul
Created April 12, 2017 04:54
Show Gist options
  • Save edutrul/5b16531c124b672ad9d4be3537329e1f to your computer and use it in GitHub Desktop.
Save edutrul/5b16531c124b672ad9d4be3537329e1f to your computer and use it in GitHub Desktop.
MessageApp.js in react native
import React, { Component } from 'react';
import { AppRegistry, Text } from 'react-native';
class MessageApp extends Component {
render() {
return (
<Text>This is my message yes sir!! tomorrow meeting! :)</Text>
);
}
}
AppRegistry.registerComponent('MessageApp', () => MessageApp);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment