Skip to content

Commit eee2fa4

Browse files
merging all conflicts
2 parents 2a0f3d3 + f2158e3 commit eee2fa4

File tree

5 files changed

+24
-0
lines changed

5 files changed

+24
-0
lines changed

content/community/conferences.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ Do you know of a local React.js conference? Add it here! (Please keep the list c
1212

1313
## Upcoming Conferences {#upcoming-conferences}
1414

15+
### AgentConf 2022 {#agent-conf-2022}
16+
January 27th - 30th, 2022. In-person in Dornbirn and Lech Austria
17+
18+
[Website](https://agent.sh/) - [Twitter](https://twitter.com/AgentConf) - [Instagram](https://www.instagram.com/teamagent/)
19+
1520
### React Brussels 2021 {#react-brussels-2021}
1621
October 15, 2021 - remote event
1722

@@ -43,6 +48,11 @@ November 12-14, 2021 - remote event
4348

4449
[Website](https://www.reactindia.io) - [Twitter](https://twitter.com/react_india) - [Facebook](https://www.facebook.com/ReactJSIndia/) - [LinkedIn](https://www.linkedin.com/showcase/14545585) - [YouTube](https://www.youtube.com/channel/UCaFbHCBkPvVv1bWs_jwYt3w/videos)
4550

51+
### render(ATL) 2022 {#render-atlanta-2022}
52+
June 2-4, 2022. Atlanta, GA, USA
53+
54+
[Website](https://renderatl.com) - [Twitter](https://twitter.com/renderATL) - [Instagram](https://www.instagram.com/renderatl/) - [Facebook](https://www.facebook.com/renderatl/) - [LinkedIn](https://www.linkedin.com/company/renderatl)
55+
4656
## Past Conferences {#past-conferences}
4757

4858
### render(ATL) 2021 {#render-atlanta-2021}

content/community/meetups.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,9 @@ Do you have a local React.js meetup? Add it here! (Please keep the list alphabet
112112
## Italy {#italy}
113113
* [Milan](https://www.meetup.com/React-JS-Milano/)
114114

115+
## Kenya {#kenya}
116+
* [Nairobi - Reactdevske](https://kommunity.com/reactjs-developer-community-kenya-reactdevske)
117+
115118
## Malaysia {#malaysia}
116119
* [Kuala Lumpur](https://www.kl-react.com/)
117120
* [Penang](https://www.facebook.com/groups/reactpenang/)

content/docs/concurrent-mode-suspense.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,11 @@ function ProfileTimeline() {
9999

100100
Это раннее демо. Не переживайте, если оно кажется бессмысленным. Мы поговорим о том, как оно работает ниже. Имейте в виду, что задержка – это больше *механизм*, и определенные API, такие как `fetchProfileData()` или `resource.posts.read()` в примере выше не очень важны. Если интересно, вы можете найти их определения прямо в [демо песочнице](https://codesandbox.io/s/frosty-hermann-bztrp).
101101

102+
<<<<<<< HEAD
102103
Задержка – это не библиотека для получения данных. Это **механизм для библиотек получения данных**, который сообщает React, что *данные, которые читает компонент, ещё не готовы*. React в этом случае может подождать, пока они будут готовы и обновить пользовательский интерфейс. В Facebook, мы используем Relay с [интеграцией новой задержки](https://relay.dev/docs/getting-started/step-by-step-guide). Мы ожидаем, что другие библиотеки, такие как Apollo смогут предоставить подобную интеграцию.
104+
=======
105+
Suspense is not a data fetching library. It's a **mechanism for data fetching libraries** to communicate to React that *the data a component is reading is not ready yet*. React can then wait for it to be ready and update the UI. At Facebook, we use Relay and its [new Suspense integration](https://relay.dev/docs/getting-started/step-by-step-guide/). We expect that other libraries like Apollo can provide similar integrations.
106+
>>>>>>> f2158e36715acc001c8317e20dc4f45f9e2089f3
103107
104108
В долгосрочной перспективе мы собираемся сделать задержку основным способом чтения асинхронных данных из компонентов, независимо от того, откуда эти данные пришли.
105109

content/tutorial/tutorial.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1161,6 +1161,7 @@ class Game extends React.Component {
11611161
// Этот метод не изменялся
11621162
}
11631163
```
1164+
Notice in `jumpTo` method, we haven't updated history property of the state. That is because state updates are merged or in more simple words react will update only the properties mentioned in `setState` method leaving the remaining state as that is. For more info **[see the documentation](https://reactjs.org/docs/state-and-lifecycle.html#state-updates-are-merged)**
11641165

11651166
Мы сделаем ещё несколько изменений в методе Game `handleClick`, который выполняется когда вы кликаете на клетки.
11661167

package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,15 @@
6262
"node": "12.x.x || 14.x.x || 15.x.x",
6363
"yarn": "^1.3.2"
6464
},
65+
<<<<<<< HEAD
6566
"homepage": "https://ru.reactjs.org/",
6667
"keywords": [
6768
"gatsby"
6869
],
70+
=======
71+
"homepage": "https://reactjs.org/",
72+
"keywords": [],
73+
>>>>>>> f2158e36715acc001c8317e20dc4f45f9e2089f3
6974
"license": "CC",
7075
"main": "n/a",
7176
"repository": {
@@ -74,6 +79,7 @@
7479
},
7580
"scripts": {
7681
"build": "gatsby clean && gatsby build",
82+
"build-ci": "gatsby clean && gatsby build",
7783
"check-all": "npm-run-all prettier generate-ids --parallel lint flow",
7884
"ci-check": "npm-run-all prettier:diff --parallel lint flow",
7985
"dev": "gatsby develop -H 0.0.0.0",

0 commit comments

Comments
 (0)