File tree Expand file tree Collapse file tree 6 files changed +3
-37
lines changed Expand file tree Collapse file tree 6 files changed +3
-37
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,6 @@ React community には選定された多くの素晴らしいリソースがあ
16
16
17
17
- [ Awesome React Components] ( https://github.com/brillout/awesome-react-components ) - React components についての選定されたリストです。
18
18
19
- <<<<<<< HEAD
20
19
- [ 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.
23
20
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 の* すべて* のカンファや講演がカテゴリ別に選定されて収録されているウェブサイトです。
Original file line number Diff line number Diff line change @@ -487,11 +487,7 @@ NVDA を最大限に活用する方法は以下のガイドを参照してくだ
487
487
488
488
VoiceOver は Apple 社製品に統合されたスクリーンリーダです。
489
489
490
- <<<<<<< HEAD
491
490
VoiceOver を有効化して使用する方法は以下のガイドを参照してください:
492
- =======
493
- Refer to the following guides on how to activate and use VoiceOver:
494
- >>>>>>> e0a0ec3dad47804d0b41d4a7bb81841638dc79dd
495
491
496
492
- [ WebAIM - Using VoiceOver to Evaluate Web Accessibility] ( https://webaim.org/articles/voiceover/ )
497
493
- [ Deque - VoiceOver for OS X Keyboard Shortcuts] ( https://dequeuniversity.com/screenreaders/voiceover-keyboard-shortcuts )
Original file line number Diff line number Diff line change @@ -86,22 +86,9 @@ import("./math").then(math => {
86
86
});
87
87
```
88
88
89
- <<<<<<< HEAD
90
- > 補足:
91
- >
92
- > ` import() ` 構文は ECMAScript (JavaScript) における[ 提案中] ( https://github.com/tc39/proposal-dynamic-import ) の構文であり、
93
- > 現時点ではまだ言語標準となっていません。
94
- > 近い将来での標準化が期待されています。
95
-
96
89
Webpack がこの構文を見つけると、自動的にアプリのコードを分割します。
97
90
Create React App を使用している場合はすでに設定がされているため、[ すぐに使用を開始することができます。] ( https://facebook.github.io/create-react-app/docs/code-splitting )
98
91
[ 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
105
92
106
93
もし Webpack を自分でセットアップしていた場合には、Webpack の[ コード分割に関するガイド] ( https://webpack.js.org/guides/code-splitting/ ) を読むと良いでしょう。
107
94
きっとあなたの Webpack の設定はだいたい[ このように] ( https://gist.github.com/gaearon/ca6e803f5c604d37468b0091d9959269 ) なると思います。
Original file line number Diff line number Diff line change @@ -449,11 +449,7 @@ function FancyInput(props, ref) {
449
449
FancyInput = forwardRef (FancyInput);
450
450
```
451
451
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() ` を呼べるようになります。
457
453
458
454
### ` useLayoutEffect ` {#uselayouteffect}
459
455
Original file line number Diff line number Diff line change @@ -176,11 +176,7 @@ Chrome での操作は以下の通り。
176
176
177
177
6 . React イベントが ** User Timing** ラベルの下にグループ化される。
178
178
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 ) を参照ください。
184
180
185
181
** プロファイル結果の数値は相対的なものであり、コンポーネントは本番環境ではより速くレンダーされる** ことに注意してください。それでも、無関係な UI 部分が誤って更新されているのを見つけたり、どの程度の頻度と深さで UI の更新が発生するのかを知る手助けになるはずです。
186
182
Original file line number Diff line number Diff line change 7
7
8
8
// NOTE: We can't just use `location.toString()` because when we are rendering
9
9
// the SSR part in node.js we won't have a proper location.
10
- < << << << HEAD
11
10
const urlRoot = 'https://ja.reactjs.org' ;
12
- const version = '16.10.2' ;
13
- = === ===
14
- const urlRoot = 'https://reactjs.org' ;
15
11
const version = '16.12.0' ;
16
- > >>> >>> e0a0ec3dad47804d0b41d4a7bb81841638dc79dd
17
12
const babelURL = 'https://unpkg.com/babel-standalone@6.26.0/babel.min.js' ;
18
13
19
14
export { babelURL , urlRoot , version } ;
You can’t perform that action at this time.
0 commit comments