Created
May 19, 2017 22:47
-
-
Save pporche87/239bbb85ce7fd4dbdfa34b553f326f7b to your computer and use it in GitHub Desktop.
This file contains hidden or 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 } from 'react-native' | |
| const CardSection = (props) => { | |
| return ( | |
| <View style={styles.containerStyle}> | |
| {props.children} | |
| </View> | |
| ) | |
| } | |
| const styles = { | |
| containerStyle: { | |
| borderBottomWidth: 1, | |
| padding: 5, | |
| backgroundColor: '#fff', | |
| justifyContent: 'flex-start', | |
| flexDirection: 'row', | |
| borderColor: '#ddd', | |
| position: 'relative' | |
| } | |
| } | |
| export { CardSection } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment