Aaron[에런]/코드 스니펫1 [React Custom Hooks] Form hooks ver 0.1 (with TypeScript) 영상을 참고하여 직접 Form 관련 커스텀 훅을 간단히 제작해보았습니다. 아직 미숙한 부분이나 부족한 점이 많지만, 실무, 사이드 프로젝트 등 여러 경험들을 토대로 저만의 커스텀 훅을 더 잘 보완해나가겠습니다. // form-hooks.ts import React, { useCallback, useState } from 'react'; export interface IuseInputProps { type: string; defValue: string | number; } const useInput = ({ type, defValue }: IuseInputProps) => { const [value, setValue] = useState(defValue); return { inputProps: { type.. 2022. 4. 21. 이전 1 다음 반응형