import React from 'react' import { StyleSheet, TouchableOpacity } from 'react-native' export default ({ children, onPress, style }) => ( {children} ) const styles = StyleSheet.create({ sectionFlex: { backgroundColor: '#eee', flexDirection: 'row', justifyContent: 'center', marginTop: 10, marginBottom: 10, marginLeft: -10, marginRight: -10, }, })