- import { store } from './redux/store';
- store.subscribe(() => console.log(store.getState()));
- store.dispatch({ type: 'INCREMENT' });
- store.dispatch({ type: 'INCREMENT' });
- store.dispatch({ type: 'DECREMENT' });
- store.dispatch({ type: 'DECREMENT' });
- store.dispatch({ type: 'DECREMENT' });
|