“Combinereducers” Kode Jawaban

Combinereducers

import { combineReducers } from 'redux'

rootReducer = combineReducers({potato: potatoReducer, tomato: tomatoReducer})
// This would produce the following state object
{
  potato: {
    // ... potatoes, and other state managed by the potatoReducer ...
  },
  tomato: {
    // ... tomatoes, and other state managed by the tomatoReducer, maybe some nice sauce? ...
  }
}
Ofir Salem

Combinereducers

rootReducer = combineReducers({potato: potatoReducer, tomato: tomatoReducer})
// This would produce the following state object
{
  potato: {
    // ... potatoes, and other state managed by the potatoReducer ...
  },
  tomato: {
    // ... tomatoes, and other state managed by the tomatoReducer, maybe some nice sauce? ...
  }
}
Quaint Quoll

Jawaban yang mirip dengan “Combinereducers”

Pertanyaan yang mirip dengan “Combinereducers”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya