mirror of
https://github.com/status-im/react-native-fast-image.git
synced 2025-02-24 12:18:12 +00:00
14 lines
294 B
JavaScript
14 lines
294 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,
|
|
},
|
|
})
|