Skip to content

Instantly share code, notes, and snippets.

@pporche87
Created May 19, 2017 22:47
Show Gist options
  • Select an option

  • Save pporche87/239bbb85ce7fd4dbdfa34b553f326f7b to your computer and use it in GitHub Desktop.

Select an option

Save pporche87/239bbb85ce7fd4dbdfa34b553f326f7b to your computer and use it in GitHub Desktop.
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