UNPKG

az-mobile-reuseable-components

Version:

All reusable components

9 lines (6 loc) 196 B
import { Text } from 'react-native'; import React from 'react'; const TextComponent = ({ text, textStyle }) => { return <Text style={textStyle}>{text}</Text>; }; export default TextComponent;