Skip to content

Commit

Permalink
Fix 404 links in React 18 docs (#34486)
Browse files Browse the repository at this point in the history
https://nextjs.org/docs/advanced-features/react-18/overview

## Bug

- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors have helpful link attached, see `contributing.md`

## Feature

- [ ] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR.
- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Documentation added
- [ ] Telemetry added. In case of a feature if it's used or not.
- [ ] Errors have helpful link attached, see `contributing.md`

## Documentation / Examples

- [x] Make sure the linting passes by running `yarn lint`
  • Loading branch information
shuding committed Feb 17, 2022
1 parent c0abf32 commit ae3e55d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/advanced-features/react-18/overview.md
Expand Up @@ -19,10 +19,10 @@ You can now start using React 18's new APIs like `startTransition` and `Suspense

Streaming server-rendering (SSR) is an experimental feature in Next.js 12. When enabled, SSR will use the same [Edge Runtime](/docs/api-reference/edge-runtime.md) as [Middleware](/docs/middleware.md).

[Learn how to enable streaming in Next.js.](/docs/react-18/streaming.md)
[Learn how to enable streaming in Next.js.](/docs/advanced-features/react-18/streaming.md)

## React Server Components (Alpha)

Server Components are a new feature in React that let you reduce your JavaScript bundle size by separating server and client-side code. Server Components allow developers to build apps that span the server and client, combining the rich interactivity of client-side apps with the improved performance of traditional server rendering.

Server Components are still in research and development. [Learn how to try Server Components](/docs/react-18/server-components.md) as an experimental feature in Next.js.
Server Components are still in research and development. [Learn how to try Server Components](/docs/advanced-features/react-18/server-components.md) as an experimental feature in Next.js.

0 comments on commit ae3e55d

Please sign in to comment.