linking in react code example
Example 1: Link react router
<Link to="/about">About</Link>
Example 2: linker call rect native
import {Linking} from 'react-native'
Linking.openURL(`tel:${phoneNumber}`)
Example 3: link in react
<Link
to={{
pathname: "/courses",
search: "?sort=name",
hash: "#the-hash",
state: { fromDashboard: true }
}}
/>