hw.js 294 B

12345678910111213
  1. import { store } from './redux/store';
  2. store.subscribe(() => console.log(store.getState()));
  3. store.dispatch({ type: 'INCREMENT' });
  4. store.dispatch({ type: 'INCREMENT' });
  5. store.dispatch({ type: 'DECREMENT' });
  6. store.dispatch({ type: 'DECREMENT' });
  7. store.dispatch({ type: 'DECREMENT' });