Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Last active April 12, 2016 23:22
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 chuck0523/bd3851ee98872ffe0c3c9a14868a61a1 to your computer and use it in GitHub Desktop.
Save chuck0523/bd3851ee98872ffe0c3c9a14868a61a1 to your computer and use it in GitHub Desktop.
class MyFirstApp extends Component {
render() {
var movie = MOCKED_MOVIES_DATA[0];
return (
<View style={styles.container}>
<Text>{movie.title}</Text>
<Text>{movie.year}</Text>
<Image
source={{uri: movie.posters.thumbnail}}
style={styles.thumbnail}
/>
</View>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment