Counter with Redux problem

Tell us what’s happening:
Where I am doing error?

Your code so far


const INCREMENT = "INCREMENT"; // define a constant for increment action types
const DECREMENT = "DECREMENT"; // define a constant for decrement action types



const counterReducer = (state = 0, action) =>
  {
    switch(action.type){
      case INCREMENT :
        return {
          state : state + 1
        }
      case DECREMENT :
        return {
          state : state - 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 = Redux.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/69.0.3497.100 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/front-end-libraries/redux/write-a-counter-with-redux

Remember, state is a number, so why are you returning an object?

Sorry i have not marked that oops…