Skip to content

Commit

Permalink
[#10273] Fix react docs links (#10278)
Browse files Browse the repository at this point in the history
Fixes #10273

Co-authored-by: Maksym Litvynov <rxx@users.noreply.github.com>
  • Loading branch information
tamadamas and rxx authored Mar 23, 2024
1 parent b6efb04 commit a8ee5a3
Showing 18 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -56,7 +56,7 @@ development experience you can fall in love with!
Here's a quick taste of the technologies a standard Redwood application will
use:

- [React](https://reactjs.org/)
- [React](https://react.dev/)
- [GraphQL](https://graphql.org/) ([GraphQL Yoga](https://www.graphql-yoga.com) + [Envelop](https://www.envelop.dev) + [Apollo Client](https://www.apollographql.com/docs/react))
- [Prisma](https://www.prisma.io/)
- [Jest](https://jestjs.io/)
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ import App from './App'
* When `#redwood-app` isn't empty then it's very likely that you're using
* prerendering. So React attaches event listeners to the existing markup
* rather than replacing it.
* https://reactjs.org/docs/react-dom-client.html#hydrateroot
* https://react.dev/reference/react-dom/client/hydrateRoot
*/
const redwoodAppElement = document.getElementById('redwood-app')

2 changes: 1 addition & 1 deletion __fixtures__/test-project-rsa/web/src/entry.client.tsx
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ import App from './App'
* When `#redwood-app` isn't empty then it's very likely that you're using
* prerendering. So React attaches event listeners to the existing markup
* rather than replacing it.
* https://reactjs.org/docs/react-dom-client.html#hydrateroot
* https://react.dev/reference/react-dom/client/hydrateRoot
*/
const redwoodAppElement = document.getElementById('redwood-app')

Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ import App from './App'
* When `#redwood-app` isn't empty then it's very likely that you're using
* prerendering. So React attaches event listeners to the existing markup
* rather than replacing it.
* https://reactjs.org/docs/react-dom-client.html#hydrateroot
* https://react.dev/reference/react-dom/client/hydrateRoot
*/
const redwoodAppElement = document.getElementById('redwood-app')

2 changes: 1 addition & 1 deletion __fixtures__/test-project/web/src/entry.client.tsx
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ import App from './App'
* When `#redwood-app` isn't empty then it's very likely that you're using
* prerendering. So React attaches event listeners to the existing markup
* rather than replacing it.
* https://reactjs.org/docs/react-dom-client.html#hydrateroot
* https://react.dev/reference/react-dom/client/hydrateRoot
*/
const redwoodAppElement = document.getElementById('redwood-app')

2 changes: 1 addition & 1 deletion docs/docs/custom-web-index.md
Original file line number Diff line number Diff line change
@@ -35,7 +35,7 @@ import App from './App'
* When `#redwood-app` isn't empty then it's very likely that you're using
* prerendering. So React attaches event listeners to the existing markup
* rather than replacing it.
* https://reactjs.org/docs/react-dom.html#hydrate
* https://react.dev/reference/react-dom/client/hydrateRoot
*/
const rootElement = document.getElementById('redwood-app')

2 changes: 1 addition & 1 deletion docs/docs/introduction.md
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ description: Redwood is the full-stack web framework designed to help you grow f
# Introduction

Redwood is the full-stack web framework designed to help you grow from side project to startup.
Redwood features an end-to-end development workflow that weaves together the best parts of [React](https://reactjs.org/), [GraphQL](https://graphql.org/), [Prisma](https://www.prisma.io/), [TypeScript](https://www.typescriptlang.org/), [Jest](https://jestjs.io/), and [Storybook](https://storybook.js.org/).
Redwood features an end-to-end development workflow that weaves together the best parts of [React](https://react.dev/), [GraphQL](https://graphql.org/), [Prisma](https://www.prisma.io/), [TypeScript](https://www.typescriptlang.org/), [Jest](https://jestjs.io/), and [Storybook](https://storybook.js.org/).
For full inspiration and vision, see Redwood's [README](https://github.com/redwoodjs/redwood/blob/main/README.md).

Development on Redwood happens in the [redwoodjs/redwood repo on GitHub](https://github.com/redwoodjs/redwood).
2 changes: 1 addition & 1 deletion docs/versioned_docs/version-1.x/custom-web-index.md
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@ import App from './App'
* When `#redwood-app` isn't empty then it's very likely that you're using
* prerendering. So React attaches event listeners to the existing markup
* rather than replacing it.
* https://reactjs.org/docs/react-dom.html#hydrate
* https://react.dev/reference/react-dom/client/hydrateRoot
*/
const rootElement = document.getElementById('redwood-app')

2 changes: 1 addition & 1 deletion docs/versioned_docs/version-2.x/custom-web-index.md
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@ import App from './App'
* When `#redwood-app` isn't empty then it's very likely that you're using
* prerendering. So React attaches event listeners to the existing markup
* rather than replacing it.
* https://reactjs.org/docs/react-dom.html#hydrate
* https://react.dev/reference/react-dom/client/hydrateRoot
*/
const rootElement = document.getElementById('redwood-app')

2 changes: 1 addition & 1 deletion docs/versioned_docs/version-3.x/custom-web-index.md
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@ import App from './App'
* When `#redwood-app` isn't empty then it's very likely that you're using
* prerendering. So React attaches event listeners to the existing markup
* rather than replacing it.
* https://reactjs.org/docs/react-dom.html#hydrate
* https://react.dev/reference/react-dom/client/hydrateRoot
*/
const rootElement = document.getElementById('redwood-app')

2 changes: 1 addition & 1 deletion docs/versioned_docs/version-4.x/custom-web-index.md
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@ import App from './App'
* When `#redwood-app` isn't empty then it's very likely that you're using
* prerendering. So React attaches event listeners to the existing markup
* rather than replacing it.
* https://reactjs.org/docs/react-dom.html#hydrate
* https://react.dev/reference/react-dom/client/hydrateRoot
*/
const rootElement = document.getElementById('redwood-app')

2 changes: 1 addition & 1 deletion docs/versioned_docs/version-5.x/custom-web-index.md
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@ import App from './App'
* When `#redwood-app` isn't empty then it's very likely that you're using
* prerendering. So React attaches event listeners to the existing markup
* rather than replacing it.
* https://reactjs.org/docs/react-dom.html#hydrate
* https://react.dev/reference/react-dom/client/hydrateRoot
*/
const rootElement = document.getElementById('redwood-app')

2 changes: 1 addition & 1 deletion docs/versioned_docs/version-6.x/custom-web-index.md
Original file line number Diff line number Diff line change
@@ -35,7 +35,7 @@ import App from './App'
* When `#redwood-app` isn't empty then it's very likely that you're using
* prerendering. So React attaches event listeners to the existing markup
* rather than replacing it.
* https://reactjs.org/docs/react-dom.html#hydrate
* https://react.dev/reference/react-dom/client/hydrateRoot
*/
const rootElement = document.getElementById('redwood-app')

2 changes: 1 addition & 1 deletion docs/versioned_docs/version-7.0/custom-web-index.md
Original file line number Diff line number Diff line change
@@ -35,7 +35,7 @@ import App from './App'
* When `#redwood-app` isn't empty then it's very likely that you're using
* prerendering. So React attaches event listeners to the existing markup
* rather than replacing it.
* https://reactjs.org/docs/react-dom.html#hydrate
* https://react.dev/reference/react-dom/client/hydrateRoot
*/
const rootElement = document.getElementById('redwood-app')

Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ import { Document } from './Document'
* When `#redwood-app` isn't empty then it's very likely that you're using
* prerendering. So React attaches event listeners to the existing markup
* rather than replacing it.
* https://reactjs.org/docs/react-dom-client.html#hydrateroot
* https://react.dev/reference/react-dom/client/hydrateRoot
*/
const redwoodAppElement = document.getElementById('redwood-app')

Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ import App from './App'
* When `#redwood-app` isn't empty then it's very likely that you're using
* prerendering. So React attaches event listeners to the existing markup
* rather than replacing it.
* https://reactjs.org/docs/react-dom-client.html#hydrateroot
* https://react.dev/reference/react-dom/client/hydrateRoot
*/
const redwoodAppElement = document.getElementById('redwood-app')

Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ import App from './App'
* When `#redwood-app` isn't empty then it's very likely that you're using
* prerendering. So React attaches event listeners to the existing markup
* rather than replacing it.
* https://reactjs.org/docs/react-dom-client.html#hydrateroot
* https://react.dev/reference/react-dom/client/hydrateRoot
*/
const redwoodAppElement = document.getElementById('redwood-app')

2 changes: 1 addition & 1 deletion packages/web/src/entry/index.js
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ import App from '~redwood-app-root'
* When `#redwood-app` isn't empty then it's very likely that you're using
* prerendering. So React attaches event listeners to the existing markup
* rather than replacing it.
* https://reactjs.org/docs/react-dom-client.html#hydrateroot
* https://react.dev/reference/react-dom/client/hydrateRoot
*/
const redwoodAppElement = document.getElementById('redwood-app')

0 comments on commit a8ee5a3

Please sign in to comment.