Skip to content

Commit d9d8bf1

Browse files
committed
Remove experimental note for web examples
1 parent f90842f commit d9d8bf1

File tree

12 files changed

+1
-24
lines changed

12 files changed

+1
-24
lines changed

versioned_docs/version-5.x/link.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ title: Link
44
sidebar_label: Link
55
---
66

7-
> Note: This API is experimental and might change in a minor version.
8-
97
The `Link` component lets us navigate to a screen using a path instead of a screen name based on the [`linking` options](navigation-container.md#linking). It preserves the default behavior of anchor tags in the browser such as `Right click -> Open link in new tab"`, `Ctrl+Click`/`⌘+Click` etc.
108

119
It uses a `Text` component under the hood.

versioned_docs/version-5.x/server-container.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ title: ServerContainer
44
sidebar_label: ServerContainer
55
---
66

7-
> Note: This API is experimental and might change in a minor version.
8-
97
The `ServerContainer` component provides utilities to render your app on server with the correct [navigation state](navigation-state.md).
108

119
Example:

versioned_docs/version-5.x/server-rendering.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ title: Server rendering
44
sidebar_label: Server rendering
55
---
66

7-
> Note: This API is experimental and might change in a minor version.
8-
97
This guide will cover how to server render your React Native app using React Native for Web and React Navigation. We'll cover the following cases:
108

119
1. Rendering the correct layout depending on the request URL

versioned_docs/version-5.x/use-link-builder.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ title: useLinkBuilder
44
sidebar_label: useLinkBuilder
55
---
66

7-
> Note: This API is experimental and might change in a minor version.
8-
97
The `useLinkBuilder` hook let's us build a path to use for links for a screen in the current navigator's state. It returns a function that takes `name` and `params` for the screen to focus and returns path based on the [`linking` options](navigation-container.md#linking).
108

119
```js

versioned_docs/version-5.x/use-link-props.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ title: useLinkProps
44
sidebar_label: useLinkProps
55
---
66

7-
> Note: This API is experimental and might change in a minor version.
8-
97
The `useLinkProps` hook let's build our custom link components which let us navigate to a screen using a path instead of a screen name based on the [`linking` options](navigation-container.md#linking). It takes a path and returns an object with some props that you can pass to a component.
108

119
Example:

versioned_docs/version-5.x/use-link-to.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ title: useLinkTo
44
sidebar_label: useLinkTo
55
---
66

7-
> Note: This API is experimental and might change in a minor version.
8-
97
The `useLinkTo` hook let's us navigate to a screen using a path instead of a screen name based on the [`linking` options](navigation-container.md#linking). It returns a function that receives the path to navigate to.
108

119
```js

versioned_docs/version-6.x/link.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ title: Link
44
sidebar_label: Link
55
---
66

7-
> Note: This API is experimental and might change in a minor version.
8-
97
The `Link` component lets us navigate to a screen using a path instead of a screen name based on the [`linking` options](navigation-container.md#linking). It preserves the default behavior of anchor tags in the browser such as `Right click -> Open link in new tab"`, `Ctrl+Click`/`⌘+Click` etc.
108

119
It uses a `Text` component under the hood.

versioned_docs/version-6.x/server-container.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ title: ServerContainer
44
sidebar_label: ServerContainer
55
---
66

7-
> Note: This API is experimental and might change in a minor version.
8-
97
The `ServerContainer` component provides utilities to render your app on server with the correct [navigation state](navigation-state.md).
108

119
Example:

versioned_docs/version-6.x/server-rendering.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ title: Server rendering
44
sidebar_label: Server rendering
55
---
66

7-
> Note: This API is experimental and might change in a minor version.
8-
97
This guide will cover how to server render your React Native app using React Native for Web and React Navigation. We'll cover the following cases:
108

119
1. Rendering the correct layout depending on the request URL

versioned_docs/version-6.x/use-link-builder.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ title: useLinkBuilder
44
sidebar_label: useLinkBuilder
55
---
66

7-
> Note: This API is experimental and might change in a minor version.
87

98
The `useLinkBuilder` hook let's us build a path to use for links for a screen in the current navigator's state. It returns a function that takes `name` and `params` for the screen to focus and returns path based on the [`linking` options](navigation-container.md#linking).
109

@@ -32,4 +31,4 @@ This hook is intended to be used in navigators to show links to various pages in
3231
There are couple of important things to note:
3332

3433
- The destination screen must be present in the current navigator. It cannot be in a parent navigator or a navigator nested in a child.
35-
- It's intended to be only used in custom navigators to keep them reusable in multiple apps. For your regular app code, use paths directly instead of building paths for screens.
34+
- It's intended to be only used in custom navigators to keep them reusable in multiple apps. For your regular app code, use paths directly instead of building paths for screens, or use [`Link`](link.md) and [`useLinkProps`](use-link-props.md) which transparently handle paths.

versioned_docs/version-6.x/use-link-props.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ title: useLinkProps
44
sidebar_label: useLinkProps
55
---
66

7-
> Note: This API is experimental and might change in a minor version.
8-
97
The `useLinkProps` hook let's build our custom link components which let us navigate to a screen using a path instead of a screen name based on the [`linking` options](navigation-container.md#linking). It takes a path and returns an object with some props that you can pass to a component.
108

119
Example:

versioned_docs/version-6.x/use-link-to.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ title: useLinkTo
44
sidebar_label: useLinkTo
55
---
66

7-
> Note: This API is experimental and might change in a minor version.
8-
97
The `useLinkTo` hook let's us navigate to a screen using a path instead of a screen name based on the [`linking` options](navigation-container.md#linking). It returns a function that receives the path to navigate to.
108

119
```js

0 commit comments

Comments
 (0)