# ReduxSaga
9. ReduxSaga
9. ReduxSaga 참고용 velog https://velog.io/@ty-yun21/react9 참고용 github https://github.com/ty-yoon21/react-study1 commit message : 2023/02/08 redux, redux-saga 목표 redux-saga 정리 redux-saga 1.1 redux-saga https://react.vlpt.us/redux-middleware/10-redux-saga.html 1.2 Generator Function & Action Mornitoring : redux-saga 에서는 제너레이터 함수를 "saga" 라고 부릅니다. : redux-saga에서는 이러한 원리로 액션을 모니터링하고, 특정 액션이 발생했을때 우리가 원하는 자바스크립트 코드를 실행시켜준답니다. 1.3 Summary 오류 store/index.j
StarWarsAPI : 2021.02.27 Error: Invalid hook call using 'useQuery' from 'apollo-client'
PB : Redux-Saga Handler Function > Api Request using 'useQuery' from 'apollo/client' > above Error Handler Function API CALL ❤ What is 'Invalid Hook Call' ? link : https://ko.reactjs.org/docs/hooks-rules.html Hooks Rule 1) Only call 'Hook' in React Function , Not in Normal Javascript Function Call Hook in React Function Component OR Call Hook in 'Custom Hook' Trial 1 : change 'ReqGetAllShips ' function into Custom Hook link