Dylan Vann 364869b4d8 Move example and example server.
Better folder naming.
2018-03-10 18:40:27 -05:00

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,
},
})