Skip to content

Commit 49c40f0

Browse files
committed
docs(cn): fix conflicts
1 parent 49aa60f commit 49c40f0

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

content/docs/thinking-in-react.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,9 @@ React 最棒的部分之一是引导我们思考如何构建一个应用。在
3939

4040
在实践中,因为你经常是在向用户展示 JSON 数据模型,所以如果你的模型设计得恰当,UI(或者说组件结构)便会与数据模型一一对应,这是因为 UI 和数据模型都会倾向于遵守相同的*信息结构*。将 UI 分离为组件,其中每个组件需与数据模型的某部分匹配。
4141

42-
![Diagram showing nesting of components](../images/blog/thinking-in-react-components.png)
42+
![组件嵌套图示](../images/blog/thinking-in-react-components.png)
4343

44-
<<<<<<< HEAD
45-
你会看到我们的应用中包含五个组件。我们已经将每个组件展示的数据标注为了斜体。
46-
=======
47-
You'll see here that we have five components in our app. We've italicized the data each component represents. The numbers in the image correspond to the numbers below.
48-
>>>>>>> a11c2534062bd79cc1e6e34db0e149f928df35bb
44+
你会看到我们的应用中包含五个组件。我们已经将每个组件展示的数据标注为了斜体。图片中的序号与下方列表中的序号对应。
4945

5046
1. **`FilterableProductTable` (橙色):** 是整个示例应用的整体
5147
2. **`SearchBar` (蓝色):** 接受所有的*用户输入*

src/components/Banner/Banner.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -135,11 +135,7 @@ export default function Banner() {
135135
target="_blank"
136136
rel="noopener">
137137
<span css={{color: colors.brand}}>
138-
<<<<<<< HEAD
139-
参与 2020 社区问卷调查!
140-
=======
141-
Take our 2021 Community Survey!
142-
>>>>>>> a11c2534062bd79cc1e6e34db0e149f928df35bb
138+
参与 2021 社区问卷调查!
143139
</span>
144140
<ExternalLinkSvg
145141
cssProps={{

0 commit comments

Comments
 (0)