# fed-04-2-redux **Repository Path**: dadami/fed-04-2-redux ## Basic Information - **Project Name**: fed-04-2-redux - **Description**: redux - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-12-05 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### connnect 第二个参数 ```js const mapDispatchToProps = (dispatch) => ({ increment() { dispatch({ type: "increment" }); }, decrement() { dispatch({ type: "decrement" }); }, }); ```