Skip to content

docs(cn): translate reference/react/index into Chinese #1098

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 53 commits into from
Jun 21, 2023
Merged
Changes from 1 commit
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
74e72da
translate: update reference/react/index.md
thehelium Mar 24, 2023
c540245
translate: some words updated to singular
thehelium Mar 24, 2023
f4c22c8
translate: some words updated to singular
thehelium Mar 24, 2023
af71afe
translate: update commit suggestion
thehelium Mar 26, 2023
4d3e177
translate: update omissions
thehelium Mar 26, 2023
0543ecb
translate: update the word 'state'
thehelium Mar 28, 2023
5c3357c
fix(words): change some words
thehelium Mar 28, 2023
0146f3f
fix: update doc layout
thehelium Mar 30, 2023
a75761e
fix: update doc layout
thehelium Mar 30, 2023
e97c2ee
fix: update the sentence
thehelium Mar 30, 2023
3dcf7d4
fix: update src/content/reference/react/index.md
thehelium Apr 9, 2023
42f35fb
fix: update src/content/reference/react/index.md
thehelium Apr 9, 2023
650d0be
fix: update src/content/reference/react/index.md
thehelium Apr 9, 2023
49b6aa5
fix: update src/content/reference/react/index.md
thehelium Apr 11, 2023
f1cd8ce
fix: update src/content/reference/react/index.md
thehelium Apr 11, 2023
edc05ef
fix: update src/content/reference/react/index.md
thehelium Apr 11, 2023
76082d0
fix: update src/content/reference/react/index.md
thehelium Apr 11, 2023
75eb1d0
fix: update src/content/reference/react/index.md
thehelium Apr 12, 2023
d615019
fix: update src/content/reference/react/index.md
thehelium Apr 12, 2023
adc4ac1
fix: update src/content/reference/react/index.md
thehelium Apr 12, 2023
fe47727
fix: update src/content/reference/react/index.md
thehelium Apr 12, 2023
4a269e3
fix: update some strange words
thehelium Apr 12, 2023
8fe9943
fix: update src/content/reference/react/index.md
thehelium Apr 20, 2023
b114d3a
fix: update src/content/reference/react/index.md
thehelium Apr 20, 2023
7ce4bf5
fix: update src/content/reference/react/index.md
thehelium Apr 20, 2023
a8ad575
fix: update src/content/reference/react/index.md
thehelium Apr 20, 2023
79dfd73
Merge branch 'main' into translate-reference-index
thehelium Apr 25, 2023
87cea45
Merge branch 'main' into translate-reference-index
awxiaoxian2020 Apr 27, 2023
90cf587
Merge branch 'reactjs:main' into translate-reference-index
thehelium May 9, 2023
3894dc9
fix: update the term "escape hatches"
thehelium May 9, 2023
621868c
fix: update the term "escape hatch"
thehelium May 9, 2023
7b264c0
Merge branch 'main' into translate-reference-index
thehelium May 10, 2023
d2057be
Merge branch 'main' into translate-reference-index
thehelium May 12, 2023
d79a5c2
fix: update reviewed
thehelium May 19, 2023
ee19c8f
fix: update reviewed
thehelium May 19, 2023
8642915
fix: update reviewed
thehelium May 19, 2023
9c9bb83
fix: update reviewed
thehelium May 19, 2023
94262b3
fix: update reviewed
thehelium May 19, 2023
a8ee6b9
fix: update reviewed
thehelium May 19, 2023
a74e906
fix: update reviewed
thehelium May 19, 2023
9090cc4
fix: update reviewed
thehelium May 19, 2023
4b38404
fix: update reviewed
thehelium May 19, 2023
4b60acc
fix: update reviewed
thehelium May 19, 2023
7699738
fix: update reviewed
thehelium May 19, 2023
e33f7ec
fix: update reviewed
thehelium May 19, 2023
89df8d3
fix: update reviewed
thehelium May 19, 2023
0a09a15
fix: update reviewed
thehelium May 19, 2023
7a2e4d8
fix: update reviewed
thehelium May 19, 2023
f9a1d90
Merge branch 'main' into translate-reference-index
thehelium May 19, 2023
184000a
Update src/content/reference/react/index.md
Yucohny Jun 19, 2023
df0681d
Update src/content/reference/react/index.md
Yucohny Jun 19, 2023
a8c5d6a
Update src/content/reference/react/index.md
Yucohny Jun 19, 2023
cd04727
Update src/content/reference/react/index.md
Yucohny Jun 19, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
translate: some words updated to singular
  • Loading branch information
thehelium committed Apr 21, 2023
commit f4c22c823c2f2a9f9c51f494448ee1ed41b02c20
4 changes: 2 additions & 2 deletions src/content/reference/react/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ title: "内置 React Hook"

---

## State Hook {/*state-hooks*/}
## 状态 Hook {/*state-hooks*/}

*State* 让一个组件 ["记住" 像用户输入的信息](/learn/state-a-components-memory),比如,要给一个组件添加状态,使用这些 Hook 中的一个:

Expand Down Expand Up @@ -79,7 +79,7 @@ Effect 是 React 范式的 "逃生舱门"。不要用 Effect 来协调你的应

---

## Performance Hooks {/*performance-hooks*/}
## 性能 Hook {/*performance-hooks*/}

优化重新渲染性能的一个常见方法就是跳过不必要的工作。比如,你可以告诉 React 重用一个缓存的计算,或者如果数据在上一次渲染后没有变化,就跳过一次重新渲染。

Expand Down