mirror of
https://github.com/status-im/react-native-fast-image.git
synced 2025-02-24 20:28:21 +00:00
11 lines
219 B
JavaScript
11 lines
219 B
JavaScript
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',
|
|
},
|
|
})
|