import React from "react"; import { Text as RNText } from "react-native"; import { Text } from "../../../Text"; interface LinkProps { readonly children: string; readonly onPress: () => void; readonly onLongPress?: () => void; } export function Link({ children, onPress, onLongPress }: LinkProps) { return ( {children} ); }