reduxThunk
redux-thunk
Reference
redux-thunk란
export default connect(mapStateToProps, mapDispatchToProps)(Container); function mapDispatchToProps(dispatch) {
return {
noThunk: (data) => dispatch({type:"example", data}),
};
} 유념해야 할 코드
Last updated