Skip to content

Instantly share code, notes, and snippets.

@hgale
Created June 4, 2017 16:43
Show Gist options
  • Save hgale/a53228cdff15b8a1421996e3e3859dcf to your computer and use it in GitHub Desktop.
Save hgale/a53228cdff15b8a1421996e3e3859dcf to your computer and use it in GitHub Desktop.
react native class gist
import React, { Component } from 'react'
import { StyleSheet, Text, View } from 'react-native';
export default class History extends Component {
render() {
return (
<View style={styles.container}>
<Text>History!</Text>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment