Skip to content

Instantly share code, notes, and snippets.

@codeithuman
Last active October 11, 2018 15:19
Show Gist options
  • Save codeithuman/92c976b0d18764f46b2a5351b5768caf to your computer and use it in GitHub Desktop.
Save codeithuman/92c976b0d18764f46b2a5351b5768caf to your computer and use it in GitHub Desktop.
Simple example of HTML vs React Native
// React w/ HTML
<div>
<p>This is HTML w/ React</p>
<MyWidget />
</div>
// React Native
<View>
<Text>This is React Native</Text>
<MyWidget />
<View>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment