✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Please, select the correct action type that will be generated
const counterSlice = createSlice({ name: 'counter', initialState: initialCounterState, reducers: { increment(state) { state.counter++; }, },});