Skip to content

Instantly share code, notes, and snippets.

@dabit3
Created June 17, 2016 14:56
Show Gist options
  • Save dabit3/a48b04c819057d8b0ffc2a29347ceb87 to your computer and use it in GitHub Desktop.
Save dabit3/a48b04c819057d8b0ffc2a29347ceb87 to your computer and use it in GitHub Desktop.
React Native Navigator Experimental Part 2 — Implementing Redux About.js
import React from 'react'
import {
View,
Text,
StyleSheet
} from 'react-native'
import Button from './Button'
const About = ({_goBack}) => (
<View style={styles.container}>
<Text style={styles.title}>About</Text>
<Button onPress={_goBack} label='Go Back' />
</View>
)
const styles = StyleSheet.create({
title: {
marginBottom: 20,
fontSize: 22,
textAlign: 'center'
},
container: {
paddingTop: 60
}
})
export default About
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment