Skip to content

Instantly share code, notes, and snippets.

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

  • Save pporche87/344ea00635cb5f534277aebdf0bc1a2f to your computer and use it in GitHub Desktop.

Select an option

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