“Reaja o Redux Catch Sheet” Respostas de código

Reaja o Redux Catch Sheet

// Reducer
function counter (state = { value: 0 }, action) {
  switch (action.type) {
  case 'INCREMENT':
    return { value: state.value + 1 }
  case 'DECREMENT':
    return { value: state.value - 1 }
  default:
    return state
  }
}
Proud Piranha

Reaja o Redux Catch Sheet

// Optional - you can pass `initialState` as a second arg
let store = createStore(counter, { value: 0 })
Proud Piranha

Reaja o Redux Catch Sheet

import { createStore } from 'redux'
Proud Piranha

Reaja o Redux Catch Sheet

let store = createStore(counter)
Proud Piranha

Reaja o Redux Catch Sheet

// Gets the current state
store.getState()
Proud Piranha

Respostas semelhantes a “Reaja o Redux Catch Sheet”

Perguntas semelhantes a “Reaja o Redux Catch Sheet”

Mais respostas relacionadas para “Reaja o Redux Catch Sheet” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código