@react-navigation/native
Version:
React Native integration for React Navigation
22 lines (21 loc) • 889 B
TypeScript
import * as React from 'react';
import { Text, TextProps, GestureResponderEvent } from 'react-native';
import type { NavigationAction } from '@react-navigation/core';
declare type Props = {
to: string;
action?: NavigationAction;
target?: string;
onPress?: (e: React.MouseEvent<HTMLAnchorElement, MouseEvent> | GestureResponderEvent) => void;
} & (TextProps & {
children: React.ReactNode;
});
/**
* Component to render link to another screen using a path.
* Uses an anchor tag on the web.
*
* @param props.to Absolute path to screen (e.g. `/feeds/hot`).
* @param props.action Optional action to use for in-page navigation. By default, the path is parsed to an action based on linking config.
* @param props.children Child elements to render the content.
*/
export default function Link({ to, action, ...rest }: Props): React.CElement<TextProps, Text>;
export {};