Tell us what’s happening:
Your code so far
const INCREMENT = "INCREMENT"; // define a constant for increment action types
const DECREMENT = "DECREMENT"; // define a constant for decrement action types
let initialState = {
count = 0
};
const counterReducer = (state = initialState, action) => {
switch (action.type) {
case INCREMENT:
return state.count + 1
case DECREMENT :
return state.count - 1
default:
return state;
}
}; // define the counter reducer which will increment or decrement the state based on the action it receives
const incAction = () => {
return {
type : INCREMENT
}
};// define an action creator for incrementing
const decAction = () => {
return {
type: DECREMENT
}
}; // define an action creator for decrementing
const store = createStore(counterReducer); // define the Redux store here, passing in your reducers
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36
.
Challenge: Write a Counter with Redux
Link to the challenge: