You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In addition to [Hooks](/reference/react) and [Components](/reference/react/components), the `react`package exports a few other APIs that are useful for defining components. This page lists all the remaining modern React APIs.
7
+
[フック](/reference/react)や[コンポーネント](/reference/react/components)の他に、`react`パッケージはコンポーネントの定義に役立つ他の API も提供しています。このページでは、残りのモダンな React API をすべてリストアップしています。
8
8
9
9
</Intro>
10
10
11
11
---
12
12
13
-
*[`createContext`](/reference/react/createContext)lets you define and provide context to the child components. Used with [`useContext`.](/reference/react/useContext)
14
-
*[`forwardRef`](/reference/react/forwardRef)lets your component expose a DOM node as a ref to the parent. Used with [`useRef`.](/reference/react/useRef)
15
-
*[`lazy`](/reference/react/lazy)lets you defer loading a component's code until it's rendered for the first time.
16
-
*[`memo`](/reference/react/memo)lets your component skip re-renders with same props. Used with [`useMemo`](/reference/react/useMemo)and[`useCallback`.](/reference/react/useCallback)
17
-
*[`startTransition`](/reference/react/startTransition)lets you mark a state update as non-urgent. Similar to [`useTransition`.](/reference/react/useTransition)
0 commit comments