Files
drip/components/link.js
T
Julia Friesel 0aa8179570 Add link
2018-12-20 15:45:13 +01:00

13 lines
302 B
JavaScript

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