
[React] Lamp 쇼핑몰 구현하기 5 (이미지 업로드 / 상품등록 기능 구현)
·
Stack/React
LAMP-SHOPPING-CLIENT 1. customHook 폴더 생성 후 useAsync.js 파일 생성 customHook/useASync.js import { useReducer, useEffect, useCallback } from "react" const initialState = { loading: false, data: null, error: null } // 로딩중? 데이터 받기 성공? 데이터 받기 실패 // LOADING , SUCCESS, ERROR function reducer(state, action){ switch(action.type) { case "LOADING": return { loading: true, data: null, error: null }; case "SUCCE..