import React from 'react' import { View, Text, StyleSheet } from 'react-native' import { Link } from 'react-router-native' import { globalStyles } from '../../../styles/GlobalStyles' export type Props = { text: string url: string title: string } export const TextHelper: React.FC = ({ text, url, title }) => { return ( {text} {title} ) } const styles = StyleSheet.create({ textHelper: { flexDirection: 'row', }, link: { color: '#009290', marginLeft: 8, }, })