These APIs are exported from the react
package, but they are not recommended for use in newly written code. See the linked individual API pages for the suggested alternatives.
이 API는 React
패키지에서 내보내지만 새로 작성하는 코드에는 사용을 권장하지 않습니다. 각 API별로 추천하는 대안을 링크 페이지에서 확인하세요.
Legacy APIs
-
Children
lets you manipulate and transform the JSX received as thechildren
prop. See alternatives.Children
을 사용하면children
prop으로 받은 JSX를 조작하고 변형할 수 있습니다. 대안을 확인하세요. -
cloneElement
lets you create a React element using another element as a starting point. See alternatives.cloneElement
를 사용하면 다른 엘리먼트를 시작점으로 사용하여 React 엘리먼트를 생성할 수 있습니다. 대안을 확인하세요. -
Component
lets you define a React component as a JavaScript class. See alternatives.Component
를 사용하면 React 컴포넌트를 JavaScript 클래스로 정의할 수 있습니다. 대안을 확인하세요. -
createElement
lets you create a React element. Typically, you’ll use JSX instead.createElement
를 사용하면 React 엘리먼트를 생성할 수 있습니다. 일반적으로 JSX를 대신 사용합니다. -
createRef
creates a ref object which can contain arbitrary value. See alternatives.createRef
는 임의의 값을 포함할 수 있는 ref 객체를 생성합니다. 대안을 확인하세요. -
isValidElement
checks whether a value is a React element. Typically used withcloneElement
.isValidElement
는 값이 React 엘리먼트인지 여부를 확인합니다. 일반적으로cloneElement
와 함께 사용됩니다. -
PureComponent
is similar toComponent
, but it skip re-renders with same props. See alternatives.PureComponent
는Component
와 비슷하지만 동일한 props의 리렌더링을 건너뜁니다. 대안을 확인하세요.
Deprecated APIs 지원 중단된 API들
createFactory
lets you create a function that produces React elements of a certain type.createFactory
를 사용하면 특정 유형의 React 엘리먼트를 생성하는 함수를 만들 수 있습니다.