Files
react-native-fast-image/ReactNativeFastImageCocoaPodsExample/FastImage/FeatureText.js
T

11 lines
219 B
JavaScript
Raw Normal View History

2018-03-17 23:25:49 -04:00
import React from 'react'
import { StyleSheet, Text } from 'react-native'
export default ({ text }) => <Text style={styles.style}>{text}</Text>
const styles = StyleSheet.create({
style: {
color: '#222',
},
})