diff options
author | mongolyy <mongolyy@gmail.com> | 2022-02-19 13:58:41 +0900 |
---|---|---|
committer | potappo <potappo@gmail.com> | 2022-02-19 15:40:28 +0900 |
commit | 50ddb280950ceb70799e13bfc617566b9f745b60 (patch) | |
tree | d1f0d4f6a2569b70271ea82673b95f52aae382d9 | |
parent | 753d1f64d42301e8fab2808cf9bf17382c3000a1 (diff) | |
download | translated-content-50ddb280950ceb70799e13bfc617566b9f745b60.tar.gz translated-content-50ddb280950ceb70799e13bfc617566b9f745b60.tar.bz2 translated-content-50ddb280950ceb70799e13bfc617566b9f745b60.zip |
Update files/ja/learn/tools_and_testing/client-side_javascript_frameworks/react_resources/index.md
Co-authored-by: potappo <potappo@gmail.com>
-rw-r--r-- | files/ja/learn/tools_and_testing/client-side_javascript_frameworks/react_resources/index.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ja/learn/tools_and_testing/client-side_javascript_frameworks/react_resources/index.md b/files/ja/learn/tools_and_testing/client-side_javascript_frameworks/react_resources/index.md index b952e98d57..99ad8b47ba 100644 --- a/files/ja/learn/tools_and_testing/client-side_javascript_frameworks/react_resources/index.md +++ b/files/ja/learn/tools_and_testing/client-side_javascript_frameworks/react_resources/index.md @@ -79,7 +79,7 @@ React DevTools は様々な形態で提供されています。 このチュートリアルで作成したアプリケーションでは、 `App` コンポーネントからデータを必要とする子コンポーネントにデータを渡すために、コンポーネントの props を利用しました。ほとんどの場合、 props はデータを共有するための適切な方法です。しかし、複雑で深くネストされたアプリケーションでは、必ずしも最適とは言えません。 -Reactはコンポーネントツリーの下にpropsを渡さずに、データを必要とするコンポーネントにデータを提供する方法として [コンテクスト API](https://reactjs.org/docs/context.html) を提供します。また、これを容易にする [useContext フック](https://reactjs.org/docs/hooks-reference.html#usecontext) も提供されています。 +React はコンポーネントツリーの下にpropsを渡さずに、データを必要とするコンポーネントにデータを提供する方法として [コンテクスト API](https://reactjs.org/docs/context.html) を提供します。また、これを容易にする [useContext フック](https://reactjs.org/docs/hooks-reference.html#usecontext) も提供されています。 自身でこの API を試したいというかたは、 Smashing Magazine が書いた [React コンテクストの紹介記事](https://www.smashingmagazine.com/2020/01/introduction-react-context-api/) を読むといいでしょう。 |