Skip to content

Commit

Permalink
Resolve merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
carburo committed Dec 11, 2023
1 parent a66ffe6 commit fb9e442
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 32 deletions.
8 changes: 2 additions & 6 deletions src/content/learn/start-a-new-react-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,9 @@ Si deseas crear una nueva aplicación o un nuevo sitio web completamente con Rea
npx create-next-app@latest
</TerminalBlock>

<<<<<<< HEAD
Si eres nuevo en Next.js, mira el [tutorial de Next.js.](https://nextjs.org/learn/foundations/about-nextjs)
=======
If you're new to Next.js, check out the [learn Next.js course.](https://nextjs.org/learn)
>>>>>>> af54fc873819892f6050340df236f33a18ba5fb8
Si no tienes experiencia con Next.js, prueba el [curso introductorio de Next.js.](https://nextjs.org/learn)

Next.js es mantenido por [Vercel](https://vercel.com/). Puedes [implementar una aplicación Next.js](https://nextjs.org/docs/app/building-your-application/deploying) en cualquier alojamiento Node.js o sin servidor, o en tu propio servidor. Next.js también admite una [exportación estática](https://nextjs.org/docs/pages/building-your-application/deploying/static-exports) que no requiere un servidor.
El mantenimiento de Next.js está a cargo de [Vercel](https://vercel.com/). Puedes [implementar una aplicación Next.js](https://nextjs.org/docs/app/building-your-application/deploying) en cualquier alojamiento de Node.js, *serverless*, o en tu propio servidor. Next.js también admite una [exportación estática](https://nextjs.org/docs/pages/building-your-application/deploying/static-exports) que no requiere un servidor.

### Remix {/*remix*/}

Expand Down
10 changes: 3 additions & 7 deletions src/content/reference/react-dom/server/renderToNodeStream.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,10 @@ En el cliente, llama a [`hydrateRoot`](/reference/react-dom/client/hydrateRoot)

* `reactNode`: Un nodo de React que deseas representar en HTML. Por ejemplo, un elemento JSX como `<App />`.

<<<<<<< HEAD
#### Devuelve {/*returns*/}
=======
* **optional** `options`: An object for server render.
* **optional** `identifierPrefix`: A string prefix React uses for IDs generated by [`useId`.](/reference/react/useId) Useful to avoid conflicts when using multiple roots on the same page. Must be the same prefix as passed to [`hydrateRoot`.](/reference/react-dom/client/hydrateRoot#parameters)
* **opcional** `options`: Un objeto de configuración para el renderizado en el servidor.
* **opcional** `identifierPrefix`: Un prefijo de *string* que React utiliza para los IDs generados por [`useId`.](/reference/react/useId) Es útil para evitar conflictos cuando se utilizan múltiples raíces en la misma página. Debe ser el mismo prefijo que se pasa a [`hydrateRoot`.](/reference/react-dom/client/hydrateRoot#parameters)

#### Returns {/*returns*/}
>>>>>>> af54fc873819892f6050340df236f33a18ba5fb8
#### Devuelve {/*returns*/}

Un [*Stream* legible de Node.js](https://nodejs.org/api/stream.html#readable-streams) que produce una cadena de HTML.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,9 @@ Esto producirá una salida de HTML no interactiva de tus componentes de React.

#### Parámetros {/*parameters*/}

<<<<<<< HEAD
* `reactNode`: Un nodo React que deseas renderizar a HTML. Por ejemplo, un nodo JSX como `<Page />`.
=======
* `reactNode`: A React node you want to render to HTML. For example, a JSX node like `<Page />`.
* **optional** `options`: An object for server render.
* **optional** `identifierPrefix`: A string prefix React uses for IDs generated by [`useId`.](/reference/react/useId) Useful to avoid conflicts when using multiple roots on the same page.
>>>>>>> af54fc873819892f6050340df236f33a18ba5fb8
* **opcional** `options`: Un objeto de configuración para el renderizado en el servidor.
* **opcional** `identifierPrefix`: Un prefijo de *string* que React utiliza para los IDs generados por [`useId`.](/reference/react/useId) Es útil para evitar conflictos cuando se utilizan múltiples raíces en la misma página.

#### Devuelve {/*returns*/}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ El stream producirá, en la salida, HTML no interactivo de tus componentes de Re
<<<<<<< HEAD
#### Devuelve {/*returns*/}
=======
* **optional** `options`: An object for server render.
* **optional** `identifierPrefix`: A string prefix React uses for IDs generated by [`useId`.](/reference/react/useId) Useful to avoid conflicts when using multiple roots on the same page.
* **opcional** `options`: Un objeto de configuración para el renderizado en el servidor.
* **opcional** `identifierPrefix`: Un prefijo de *string* que React utiliza para los IDs generados por [`useId`.](/reference/react/useId) Es útil para evitar conflictos cuando se utilizan múltiples raíces en la misma página.

#### Returns {/*returns*/}
#### Devuelve {/*returns*/}
>>>>>>> af54fc873819892f6050340df236f33a18ba5fb8
Un [Stream legible de Node.js](https://nodejs.org/api/stream.html#readable-streams) que produce un string HTML como salida. El HTML resultante no puede hidratarse en el cliente.
Expand Down
10 changes: 3 additions & 7 deletions src/content/reference/react-dom/server/renderToString.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,10 @@ En el cliente, llama a [`hydrateRoot`](/reference/react-dom/client/hydrateRoot)

* `reactNode`: Un nodo de React que deseas renderizar como HTML. Por ejemplo, un nodo JSX como `<App />`.

<<<<<<< HEAD
#### Devuelve {/*returns*/}
=======
* **optional** `options`: An object for server render.
* **optional** `identifierPrefix`: A string prefix React uses for IDs generated by [`useId`.](/reference/react/useId) Useful to avoid conflicts when using multiple roots on the same page. Must be the same prefix as passed to [`hydrateRoot`.](/reference/react-dom/client/hydrateRoot#parameters)
* **opcional** `options`: Un objeto de configuración para el renderizado en el servidor.
* **opcional** `identifierPrefix`: Un prefijo de *string* que React utiliza para los IDs generados por [`useId`.](/reference/react/useId) Es útil para evitar conflictos cuando se utilizan múltiples raíces en la misma página. Debe ser el mismo prefijo que se pasa a [`hydrateRoot`.](/reference/react-dom/client/hydrateRoot#parameters)

#### Returns {/*returns*/}
>>>>>>> af54fc873819892f6050340df236f33a18ba5fb8
#### Devuelve {/*returns*/}

Una cadena de caracteres HTML.

Expand Down
6 changes: 3 additions & 3 deletions src/content/reference/react/useId.md
Original file line number Diff line number Diff line change
Expand Up @@ -306,9 +306,9 @@ input { margin: 5px; }
---
### Using the same ID prefix on the client and the server {/*using-the-same-id-prefix-on-the-client-and-the-server*/}
### Uso del mismo prefijo de ID en el cliente y el servidor {/*using-the-same-id-prefix-on-the-client-and-the-server*/}
If you [render multiple independent React apps on the same page](#specifying-a-shared-prefix-for-all-generated-ids), and some of these apps are server-rendered, make sure that the `identifierPrefix` you pass to the [`hydrateRoot`](/reference/react-dom/client/hydrateRoot) call on the client side is the same as the `identifierPrefix` you pass to the [server APIs](/reference/react-dom/server) such as [`renderToPipeableStream`.](/reference/react-dom/server/renderToPipeableStream)
Si [renderizas múltiples aplicaciones de React independientes en la misma página](#specifying-a-shared-prefix-for-all-generated-ids), y algunas de esas aplicaciones son renderizadas en el servidor, asegúrate de que el prefijo `identifierPrefix` que le pases a la llamada a [`hydrateRoot`](/reference/react-dom/client/hydrateRoot) en el lado del cliente sea el mismo `identifierPrefix` que le pases a las [APIs del servidor](/reference/react-dom/server) tales como [`renderToPipeableStream`.](/reference/react-dom/server/renderToPipeableStream)
```js
// Server
Expand All @@ -332,4 +332,4 @@ const root = hydrateRoot(
);
```
You do not need to pass `identifierPrefix` if you only have one React app on the page.
No necesitas pasar `identifierPrefix` si solo tienes una aplicación de React en la página.

0 comments on commit fb9e442

Please sign in to comment.