node.js/React.js
[React] react-redux useSelector useDispatch
IT공부블로그
2021. 7. 22. 14:57
728x90
반응형
https://darrengwon.tistory.com/559
mapStateToProps = () => {
}
mapDispatchToProps = () => {
}
return connect(mapStateToProps, mapDispatchToProps)(test);
useSelector, useDispatch 를 사용하면 더이상 위 같은 연동코드를 작성하지 않아도 된다
const test = () => {
const dispatch = useDispatch();
const user = useSelector((store) => store.user);
console.log('user: ', user);
dispatch(user.setUserInfo(userInfo));
}
export default test;
위 코드처럼 좀 더 간단하게 코드를 작성할 수 있다.
728x90
반응형