“React-Redux” Kod odpowiedzi

React-Redux

import { batch } from 'react-redux'

function myThunk() {
  return (dispatch, getState) => {
    // should only result in one combined re-render, not two
    batch(() => {
      dispatch(increment())
      dispatch(increment())
    })
  }
}
Hacker Harsha

Importuj partię z „React-Redux”

import { batch } from 'react-redux'
Hacker Harsha

Odpowiedzi podobne do “React-Redux”

Pytania podobne do “React-Redux”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu