react custom hook

React Study

React - custom hook

목차 Introduction custom hook Conclusion 📌 Introduction 안녕하세요. 오늘은 custom hook에 대해서 알아보겠습니다. custom hook은 자주 사용되는 react hooks를 묶어서 dry함을 유지하기 위해 사용이 됩니다. 그럼 한번 알아볼까요? 📌 custom hook import { useReducer, useCallback } from "react"; const CHANGE_FORM = "CHANGE_FORM"; const RESET_FORM = "RESET_FORM"; function reducer(state, action) { switch (action.type) { case CHANGE_FORM: return { ...state, [action...

eddie0329
'react custom hook' 태그의 글 목록