react) 컴포넌트(feat.typescript) #202402
1. 컴포넌트 만들기 import clsx from 'clsx'; import React from 'react'; interface Props extends React.InputHTMLAttributes { theme?: 'primary' | 'secondary' | 'tertiary'; } /* 타입 확장 interface DefaultInputTextProps extends React.InputHTMLAttributes - 기본 html에 있는 타입을 쓰고 있고 내가 그 html태그의 타입을 상속받을 경우 위와 같이 extends 하여 써주어야한다 */ export default forwardRef(function 컴포넌트명( {theme, className, ...restProps }: Props,..