Created
May 19, 2017 22:45
-
-
Save pporche87/344ea00635cb5f534277aebdf0bc1a2f 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 Card = (props) => { | |
| return ( | |
| <View style={styles.containerStyle}> | |
| {props.children} | |
| </View> | |
| ) | |
| } | |
| const styles = { | |
| containerStyle: { | |
| borderWidth: 1, | |
| borderRadius: 2, | |
| borderColor: '#ddd', | |
| borderBottomWidth: 0, | |
| shadowColor: '#000', | |
| shadowOffset: { width: 0, height: 2 }, | |
| shadowOpacity: 0.1, | |
| shadowRadius: 2, | |
| elevation: 1, | |
| marginLeft: 5, | |
| marginRight: 5, | |
| marginTop: 10 | |
| } | |
| } | |
| export { Card } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment