import React from 'react'; import { View, Text } from 'react-native'; const StringComponent = (props) => { return ( {props.text} ); }; export default StringComponent;