diff options
author | mongolyy <mongolyy@gmail.com> | 2022-02-19 15:26:38 +0900 |
---|---|---|
committer | potappo <potappo@gmail.com> | 2022-02-19 15:40:28 +0900 |
commit | d43c9620977e0656d239e2f78b95be961cfedbbd (patch) | |
tree | 97a0c7dc32e3eb83a1075239815a5ab9fd0bdf36 /files/ja | |
parent | 55ec3a20acb349f24b9d074c472f562e5925594a (diff) | |
download | translated-content-d43c9620977e0656d239e2f78b95be961cfedbbd.tar.gz translated-content-d43c9620977e0656d239e2f78b95be961cfedbbd.tar.bz2 translated-content-d43c9620977e0656d239e2f78b95be961cfedbbd.zip |
Update files/ja/learn/tools_and_testing/client-side_javascript_frameworks/react_resources/index.md
Co-authored-by: potappo <potappo@gmail.com>
Diffstat (limited to 'files/ja')
-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 92c7de04a1..d9b3f4c4a3 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/) を読むといいでしょう。 |