basic frontend demo with react and redux

This commit is contained in:
egradanin
2019-01-12 14:09:17 +01:00
parent 204985db42
commit a431c58763
53 changed files with 19185 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import { connect } from "react-redux";
import { OPTION_CHANGE } from "constants/actionTypes";
const mapStateToProps = state => {
return {
options: state.options
};
};
const mapDispatchToProps = dispatch => ({
onOptionChanged: option => dispatch({ type: OPTION_CHANGE, ...option })
});
export const optionchangewrapper = component =>
connect(
mapStateToProps,
mapDispatchToProps
)(component);