Skip to content

Instantly share code, notes, and snippets.

@peggyrayzis
Last active June 1, 2017 01:54
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 peggyrayzis/20e64db3567c3a7fe0dc73ae30159d70 to your computer and use it in GitHub Desktop.
Save peggyrayzis/20e64db3567c3a7fe0dc73ae30159d70 to your computer and use it in GitHub Desktop.
import React from 'react';
import { View, Text } from 'react-native';
export default ({ title, body }) => (
<View>
<Text>{title}</Text>
<Text>{body}</Text>
</View>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment