diff --git a/website/versioned_docs/version-0.72/navigation.md b/website/versioned_docs/version-0.72/navigation.md
index ceb52632825..1f23e62e76f 100644
--- a/website/versioned_docs/version-0.72/navigation.md
+++ b/website/versioned_docs/version-0.72/navigation.md
@@ -5,7 +5,7 @@ title: Navigating Between Screens
Mobile apps are rarely made up of a single screen. Managing the presentation of, and transition between, multiple screens is typically handled by what is known as a navigator.
-This guide covers the various navigation components available in React Native. If you are getting started with navigation, you will probably want to use [React Navigation](navigation.md#react-navigation). React Navigation provides a straightforward navigation solution, with the ability to present common stack navigation and tabbed navigation patterns on both Android and iOS.
+This guide points to the various navigation components available in React Native. If you are getting started with navigation, you will probably want to use [React Navigation](https://github.com/react-navigation). React Navigation provides a straightforward navigation solution, with the ability to present common stack navigation and tabbed navigation patterns on both Android and iOS.
If you're integrating React Native into an app that already manages navigation natively, or looking for an alternative to React Navigation, the following library provides native navigation on both platforms: [react-native-navigation](https://github.com/wix/react-native-navigation).
@@ -13,110 +13,11 @@ If you're integrating React Native into an app that already manages navigation n
The community solution to navigation is a standalone library that allows developers to set up the screens of an app with a few lines of code.
-### Installation and setup
-
-First, you need to install them in your project:
-
-```shell
-npm install @react-navigation/native @react-navigation/native-stack
-```
-
-Next, install the required peer dependencies. You need to run different commands depending on whether your project is an Expo managed project or a bare React Native project.
-
-- If you have an Expo managed project, install the dependencies with `expo`:
-
- ```shell
- npx expo install react-native-screens react-native-safe-area-context
- ```
-
-- If you have a bare React Native project, install the dependencies with `npm`:
-
- ```shell
- npm install react-native-screens react-native-safe-area-context
- ```
-
- For iOS with bare React Native project, make sure you have [CocoaPods](https://cocoapods.org/) installed. Then install the pods to complete the installation:
-
- ```shell
- cd ios
- pod install
- cd ..
- ```
-
-:::note
-You might get warnings related to peer dependencies after installation. They are usually caused by incorrect version ranges specified in some packages. You can safely ignore most warnings as long as your app builds.
-:::
-
-Now, you need to wrap the whole app in `NavigationContainer`. Usually you'd do this in your entry file, such as `index.js` or `App.js`:
-
-```tsx
-import * as React from 'react';
-import {NavigationContainer} from '@react-navigation/native';
-
-const App = () => {
- return (
-
- {/* Rest of your app code */}
-
- );
-};
-
-export default App;
-```
-
-Now you are ready to build and run your app on the device/simulator.
-
-### Usage
-
-Now you can create an app with a home screen and a profile screen:
-
-```tsx
-import * as React from 'react';
-import {NavigationContainer} from '@react-navigation/native';
-import {createNativeStackNavigator} from '@react-navigation/native-stack';
-
-const Stack = createNativeStackNavigator();
-
-const MyStack = () => {
- return (
-
-
-
-
-
-
- );
-};
-```
-
-In this example, there are 2 screens (`Home` and `Profile`) defined using the `Stack.Screen` component. Similarly, you can define as many screens as you like.
-
-You can set options such as the screen title for each screen in the `options` prop of `Stack.Screen`.
-
-Each screen takes a `component` prop that is a React component. Those components receive a prop called `navigation` which has various methods to link to other screens. For example, you can use `navigation.navigate` to go to the `Profile` screen:
-
-```tsx
-const HomeScreen = ({navigation}) => {
- return (
-