InterviewSolution
Saved Bookmarks
| 1. |
What is “store” in redux? |
|
Answer» The Redux “STORE” carries together all the states, REDUCERS, and actions that CREATE the app. The store has multiple responsibilities:
import { createStore } from 'redux' function addTodo(text) { store.dispatch(addTodo('Read the docs')) |
|