Skip to content

Commit 5f9b399

Browse files
committed
resolve conflicts
1 parent 23bfc04 commit 5f9b399

File tree

2 files changed

+3
-15
lines changed

2 files changed

+3
-15
lines changed

src/content/learn/creating-a-react-app.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,11 @@ title: Начать новый React-проект
2424

2525
**[Маршрутизатор приложения Next.js (Next.js App Router)](https://nextjs.org/docs) -- React-фреймворк, полностью использующий преимущества архитектуры React для создания фулстек-приложений.
2626

27-
<<<<<<< HEAD
28-
Команда [Vercel](https://vercel.com/) постоянно улучшает Next.js. Вы можете [развернуть Next.js-приложение](https://nextjs.org/docs/app/building-your-application/deploying) на облачном хостинге с Node.js или бессерверными вычислениями, а также на вашем собственном сервере. Next.js также поддерживает [статический экспорт](https://nextjs.org/docs/app/building-your-application/deploying/static-exports), который не требует сервера. Дополнительно Vercel предлагает платные облачные сервисы.
29-
=======
3027
<TerminalBlock>
3128
npx create-next-app@latest
3229
</TerminalBlock>
3330

34-
Next.js is maintained by [Vercel](https://vercel.com/). You can [deploy a Next.js app](https://nextjs.org/docs/app/building-your-application/deploying) to any hosting provider that supports Node.js or Docker containers, or to your own server. Next.js also supports [static export](https://nextjs.org/docs/app/building-your-application/deploying/static-exports) which doesn't require a server.
35-
>>>>>>> a3e9466dfeea700696211533a3570bc48d7bc3d3
31+
Команда [Vercel](https://vercel.com/) постоянно улучшает Next.js. Вы можете [развернуть Next.js-приложение](https://nextjs.org/docs/app/building-your-application/deploying) на любом облачном хостинге с поддержкой Node.js или Docker-контейнеров, а также на вашем собственном сервере. Next.js также поддерживает [статический экспорт](https://nextjs.org/docs/app/building-your-application/deploying/static-exports), который не требует сервера.
3632

3733
### React Router (v7) {/*react-router-v7*/}
3834

src/content/reference/react/useOptimistic.md

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -92,23 +92,15 @@ function Thread({ messages, sendMessageAction }) {
9292
return (
9393
<>
9494
<form action={formAction} ref={formRef}>
95-
<input type="text" name="message" placeholder="Hello!" />
96-
<button type="submit">Send</button>
95+
<input type="text" name="message" placeholder="Привет!" />
96+
<button type="submit">Отправить</button>
9797
</form>
9898
{optimisticMessages.map((message, index) => (
9999
<div key={index}>
100100
{message.text}
101101
{!!message.sending && <small> (Отправка...)</small>}
102102
</div>
103103
))}
104-
<<<<<<< HEAD
105-
<form action={formAction} ref={formRef}>
106-
<input type="text" name="message" placeholder="Hello!" />
107-
<button type="submit">Отправить</button>
108-
</form>
109-
=======
110-
111-
>>>>>>> a3e9466dfeea700696211533a3570bc48d7bc3d3
112104
</>
113105
);
114106
}

0 commit comments

Comments
 (0)