2018-01-29 01:42:29 -05:00
|
|
|
import React from 'react'
|
2018-01-30 20:24:45 -05:00
|
|
|
import { StyleSheet, Text } from 'react-native'
|
2018-01-29 01:42:29 -05:00
|
|
|
|
|
|
|
|
export default ({ text }) => <Text style={styles.style}>{text}</Text>
|
|
|
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
2018-05-06 19:04:28 -04:00
|
|
|
style: {
|
|
|
|
|
color: '#222',
|
|
|
|
|
},
|
2018-01-29 01:42:29 -05:00
|
|
|
})
|