AWS 학습 링크집 시리즈
- AWS 학습 자료집 http://bit.ly/aws-study-resource
- AWS 공인 솔루션스 아키텍트 - 어소시에이트 수험 가이드 http://bit.ly/sacertguide
- AWS 공인 개발자 - 어소시에이트 수험 가이드 http://bit.ly/devcertguide
- AWS 보안 관련 컨텐츠 모음집 http://bit.ly/seccontents
AWS 학습 링크집 시리즈
| import { actionTypes } from './reducer'; | |
| const [{ user }, dispatch] = useStateValue(); | |
| // or without dispatch as | |
| // const [{user}] = useStateValue(); | |
| auth.signInWithPopup(provider) | |
| .then((result) => { | |
| dispatch({ | |
| type: actionTypes.SET_USER, |