Front-end/React
[Polymorphic React Component] - 2
madison
2023. 1. 24. 11:40
Text Component 만들기
Generic Prop에 알맞는 컴포넌트만을 받는 방법
* React.ComponentPropsWithoutRef 을 사용하여 타입을 확장하면 제네릭으로 컴포넌트를 받았을때 유효한 속성을 작성하기 쉬워집니다.
ㄴ ComponentPropsWithRef : ref를 포함한 속성들을 정의할 수 있습니다. ComponentPropsWithoutRef: ref를 제외한 속성을 정의할 수있습니다. (The ComponentPropsWithoutRef type can be used to grab all the native attributes of an HTML element as the props type of your component. )
관련있는 props를 받기위해 컴포넌트를 확장하는 방법