Advertisement
raulghm

Artículo 2 SE 7

Feb 17th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import React from 'react';
  2. import { View, StyleSheet } from 'react-native';
  3.  
  4. const styles = StyleSheet.create({
  5.   container: {
  6.     borderBottomWidth: 1,
  7.     padding: 5,
  8.     backgroundColor: '#fff',
  9.     justifyContent: 'flex-start',
  10.     flexDirection: 'row',
  11.     borderColor: '#ddd',
  12.     position: 'relative',
  13.   },
  14. });
  15.  
  16. export default class CardSection extends React.Component {
  17.   render() {
  18.     return (
  19.       <View style={styles.container}>
  20.         {this.props.children}
  21.       </View>
  22.     );
  23.   }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement