Skip to content

Commit 0f55aad

Browse files
committed
Resolve conflicts
1 parent 4354c6e commit 0f55aad

File tree

6 files changed

+3
-37
lines changed

6 files changed

+3
-37
lines changed

content/community/external-resources.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@ React community には選定された多くの素晴らしいリソースがあ
1616

1717
- [Awesome React Components](https://github.com/brillout/awesome-react-components) - React components についての選定されたリストです。
1818

19-
<<<<<<< HEAD
2019
- [Awesome React Talks](https://github.com/tiaanduplessis/awesome-react-talks) - React talks についての選定されたリストです。
21-
=======
22-
- [Awesome React Talks](https://github.com/tiaanduplessis/awesome-react-talks) - A curated list of React talks.
2320

24-
- [Hero35 React Hub](https://hero35.com/stack/react) - A website with _all_ React conferences and talks, categorized & curated.
25-
>>>>>>> e0a0ec3dad47804d0b41d4a7bb81841638dc79dd
21+
- [Hero35 React Hub](https://hero35.com/stack/react) - React の*すべて*のカンファや講演がカテゴリ別に選定されて収録されているウェブサイトです。

content/docs/accessibility.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -487,11 +487,7 @@ NVDA を最大限に活用する方法は以下のガイドを参照してくだ
487487

488488
VoiceOver は Apple 社製品に統合されたスクリーンリーダです。
489489

490-
<<<<<<< HEAD
491490
VoiceOver を有効化して使用する方法は以下のガイドを参照してください:
492-
=======
493-
Refer to the following guides on how to activate and use VoiceOver:
494-
>>>>>>> e0a0ec3dad47804d0b41d4a7bb81841638dc79dd
495491

496492
- [WebAIM - Using VoiceOver to Evaluate Web Accessibility](https://webaim.org/articles/voiceover/)
497493
- [Deque - VoiceOver for OS X Keyboard Shortcuts](https://dequeuniversity.com/screenreaders/voiceover-keyboard-shortcuts)

content/docs/code-splitting.md

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -86,22 +86,9 @@ import("./math").then(math => {
8686
});
8787
```
8888

89-
<<<<<<< HEAD
90-
> 補足:
91-
>
92-
> `import()` 構文は ECMAScript (JavaScript) における[提案中](https://github.com/tc39/proposal-dynamic-import)の構文であり、
93-
> 現時点ではまだ言語標準となっていません。
94-
> 近い将来での標準化が期待されています。
95-
9689
Webpack がこの構文を見つけると、自動的にアプリのコードを分割します。
9790
Create React App を使用している場合はすでに設定がされているため、[すぐに使用を開始することができます。](https://facebook.github.io/create-react-app/docs/code-splitting)
9891
[Next.js](https://github.com/zeit/next.js/#dynamic-import) も同様です。
99-
=======
100-
When Webpack comes across this syntax, it automatically starts code-splitting
101-
your app. If you're using Create React App, this is already configured for you
102-
and you can [start using it](https://facebook.github.io/create-react-app/docs/code-splitting) immediately. It's also supported
103-
out of the box in [Next.js](https://github.com/zeit/next.js/#dynamic-import).
104-
>>>>>>> e0a0ec3dad47804d0b41d4a7bb81841638dc79dd
10592

10693
もし Webpack を自分でセットアップしていた場合には、Webpack の[コード分割に関するガイド](https://webpack.js.org/guides/code-splitting/)を読むと良いでしょう。
10794
きっとあなたの Webpack の設定はだいたい[このように](https://gist.github.com/gaearon/ca6e803f5c604d37468b0091d9959269)なると思います。

content/docs/hooks-reference.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -449,11 +449,7 @@ function FancyInput(props, ref) {
449449
FancyInput = forwardRef(FancyInput);
450450
```
451451

452-
<<<<<<< HEAD
453-
この例では、`<FancyInput ref={fancyInputRef} />` をレンダーする親コンポーネントは `fancyInputRef.current.focus()` を呼べるようになります。
454-
=======
455-
In this example, a parent component that renders `<FancyInput ref={inputRef} />` would be able to call `inputRef.current.focus()`.
456-
>>>>>>> e0a0ec3dad47804d0b41d4a7bb81841638dc79dd
452+
この例では、`<FancyInput ref={inputRef} />` をレンダーする親コンポーネントは `inputRef.current.focus()` を呼べるようになります。
457453

458454
### `useLayoutEffect` {#uselayouteffect}
459455

content/docs/optimizing-performance.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -176,11 +176,7 @@ Chrome での操作は以下の通り。
176176

177177
6. React イベントが **User Timing** ラベルの下にグループ化される。
178178

179-
<<<<<<< HEAD
180-
さらなる詳細については、[Ben Schwarz によるこの記事](https://calibreapp.com/blog/2017-11-28-debugging-react/)を参照ください。
181-
=======
182-
For a more detailed walkthrough, check out [this article by Ben Schwarz](https://building.calibreapp.com/debugging-react-performance-with-react-16-and-chrome-devtools-c90698a522ad).
183-
>>>>>>> e0a0ec3dad47804d0b41d4a7bb81841638dc79dd
179+
さらなる詳細については、[Ben Schwarz によるこの記事](https://building.calibreapp.com/debugging-react-performance-with-react-16-and-chrome-devtools-c90698a522ad)を参照ください。
184180

185181
**プロファイル結果の数値は相対的なものであり、コンポーネントは本番環境ではより速くレンダーされる**ことに注意してください。それでも、無関係な UI 部分が誤って更新されているのを見つけたり、どの程度の頻度と深さで UI の更新が発生するのかを知る手助けになるはずです。
186182

src/site-constants.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,8 @@
77

88
// NOTE: We can't just use `location.toString()` because when we are rendering
99
// the SSR part in node.js we won't have a proper location.
10-
<<<<<<< HEAD
1110
const urlRoot = 'https://ja.reactjs.org';
12-
const version = '16.10.2';
13-
=======
14-
const urlRoot = 'https://reactjs.org';
1511
const version = '16.12.0';
16-
>>>>>>> e0a0ec3dad47804d0b41d4a7bb81841638dc79dd
1712
const babelURL = 'https://unpkg.com/babel-standalone@6.26.0/babel.min.js';
1813

1914
export {babelURL, urlRoot, version};

0 commit comments

Comments
 (0)