Files
react-native-fast-image/ReactNativeFastImageExample/FastImage/Section.js
T
2018-05-06 19:04:28 -04:00

14 lines
314 B
JavaScript

import React from 'react'
import { StyleSheet, View } from 'react-native'
export default ({ children }) => <View style={styles.section}>{children}</View>
const styles = StyleSheet.create({
section: {
marginTop: 10,
marginBottom: 10,
marginLeft: 40,
marginRight: 40,
},
})