Skip to content
This repository was archived by the owner on Apr 21, 2023. It is now read-only.

Commit 0642390

Browse files
authored
Merge pull request #79 from reactjs/sync-b4b59062
Sync with reactjs.org @ b4b5906
2 parents b3a74d1 + 2feb20a commit 0642390

File tree

5 files changed

+6
-11
lines changed

5 files changed

+6
-11
lines changed

content/community/courses.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ permalink: community/courses.html
1818

1919
- [React Armory: Learn React by Itself](https://reactarmory.com/guides/learn-react-by-itself) - With React Armory, you can learn React without the buzzwords.
2020

21-
- [The Road to Learn React](https://www.robinwieruch.de/the-road-to-learn-react/) - Build a real world application in plain React without complicated tooling.
22-
2321
- [Egghead.io: The Beginner's Guide to ReactJS](https://egghead.io/courses/the-beginner-s-guide-to-reactjs) - Free course for React newbies and those looking to get a better understanding of React fundamentals.
2422

2523
- [Free React Bootcamp](https://tylermcginnis.com/free-react-bootcamp/) - Recordings from three days of a free online React bootcamp.
@@ -49,3 +47,5 @@ permalink: community/courses.html
4947
- [Tyler McGinnis](https://tylermcginnis.com/courses) - Tyler McGinnis provides access to his courses for a monthly fee. Courses include "React Fundamentals" and "Universal React".
5048

5149
- [Mastering React](https://codewithmosh.com/p/mastering-react/) - Build professional interactive apps with React.
50+
51+
- [Road to React](https://www.roadtoreact.com/) - Your journey to master React in JavaScript.

content/docs/concurrent-mode-patterns.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -792,7 +792,7 @@ The tradeoff we're making here is that `<ProfileTimeline>` will be inconsistent
792792

793793
Whether or not it's an appropriate tradeoff depends on the situation. But it's a handy tool, especially when the content doesn't change noticeably between items, and the user might not even realize they were looking at a stale version for a second.
794794

795-
It's worth noting that `useDeferredValue` is not *only* useful for data fetching. It also helps when an expensive component tree causes an interaction (e.g. typing in an input) to be sluggish. Just like we can "defer" a value that takes too long to fetch (and show its old value despite others components updating), we can do this with trees that take too long to render.
795+
It's worth noting that `useDeferredValue` is not *only* useful for data fetching. It also helps when an expensive component tree causes an interaction (e.g. typing in an input) to be sluggish. Just like we can "defer" a value that takes too long to fetch (and show its old value despite other components updating), we can do this with trees that take too long to render.
796796

797797
For example, consider a filterable list like this:
798798

@@ -926,7 +926,7 @@ function ProfilePage({ resource }) {
926926

927927
The `revealOrder="forwards"` option means that the closest `<Suspense>` nodes inside this list **will only "reveal" their content in the order they appear in the tree -- even if the data for them arrives in a different order**. `<SuspenseList>` has other interesting modes: try changing `"forwards"` to `"backwards"` or `"together"` and see what happens.
928928

929-
You can control how many loading states are visible at once with the `tail` prop. If we specify `tail="collapsed"`, we'll see *at most one* fallback at the time. You can play with it [here](https://codesandbox.io/s/adoring-almeida-1zzjh).
929+
You can control how many loading states are visible at once with the `tail` prop. If we specify `tail="collapsed"`, we'll see *at most one* fallback at a time. You can play with it [here](https://codesandbox.io/s/adoring-almeida-1zzjh).
930930

931931
Keep in mind that `<SuspenseList>` is composable, like anything in React. For example, you can create a grid by putting several `<SuspenseList>` rows inside a `<SuspenseList>` table.
932932

content/docs/state-and-lifecycle.md

-6
Original file line numberDiff line numberDiff line change
@@ -417,12 +417,6 @@ this.setState(function(state, props) {
417417

418418
একটি কম্পোনেন্ট তার state কে props হিসেবে এর child কম্পোনেন্টগুলোতে পাস করতে পারেঃ
419419

420-
```js
421-
<h2>It is {this.state.date.toLocaleTimeString()}.</h2>
422-
```
423-
424-
ইউজার-ডিফাইনড কম্পোনেন্টগুলোর ক্ষেত্রেও এটি কাজ করেঃ
425-
426420
```js
427421
<FormattedDate date={this.state.date} />
428422
```

content/tutorial/tutorial.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1195,7 +1195,7 @@ Congratulations! You've created a tic-tac-toe game that:
11951195
* Stores a game's history as a game progresses,
11961196
* Allows players to review a game's history and see previous versions of a game's board.
11971197

1198-
Nice work! We hope you now feel like you have a decent grasp on how React works.
1198+
Nice work! We hope you now feel like you have a decent grasp of how React works.
11991199

12001200
Check out the final result here: **[Final Result](https://codepen.io/gaearon/pen/gWWZgR?editors=0010)**.
12011201

src/css/reset.css

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ html {
1313
body {
1414
overflow-x: hidden;
1515
position: relative;
16+
filter: grayscale(100%);
1617
}
1718

1819
* {

0 commit comments

Comments
 (0)