---
title: Link (RN)
---
# `` (React Native)
This is the React Native version of ``. For the web version, [go here][link].
Type declaration
```tsx
declare function Link(props: LinkProps): React.ReactElement;
interface LinkProps extends TouchableHighlightProps {
children?: React.ReactNode;
onPress?(event: GestureResponderEvent): void;
replace?: boolean;
state?: any;
to: To;
}
```
A `` is an element that lets the user navigate to another view by tapping it, similar to how `` elements work in a web app. In `react-router-native`, a `` renders a `TouchableHighlight`. To override default styling and behaviour, please refer to the [Props reference for `TouchableHighlight`](https://reactnative.dev/docs/touchablehighlight#props).
```tsx
import * as React from "react";
import { View, Text } from "react-native";
import { Link } from "react-router-native";
function Home() {
return (
Welcome!
Visit your profile
);
}
```
[link]: ./link