Created
June 17, 2016 14:56
-
-
Save dabit3/a48b04c819057d8b0ffc2a29347ceb87 to your computer and use it in GitHub Desktop.
React Native Navigator Experimental Part 2 — Implementing Redux About.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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