Skip to content

Instantly share code, notes, and snippets.

@orYoffe
Created September 14, 2018 09:32
Show Gist options
  • Save orYoffe/29464bb8bdfc2ad91347e775675576f4 to your computer and use it in GitHub Desktop.
Save orYoffe/29464bb8bdfc2ad91347e775675576f4 to your computer and use it in GitHub Desktop.
const HelloReact = () => (
<div>
<p>Hello React</p>
</div>
);
const HelloReactNative = () => (
<View>
<Text>Hello ReactNative</Text>
</View>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment