import React from 'react' import { Linking } from 'react-native' import AppText from "./app-text" import styles from '../styles'; export default function Link(props) { return ( Linking.openURL(props.href)} >{props.text} ) }