1.

Give an example depicting the usage of a Redux store.

Answer»

An example depicting the usage of a REDUX store is given below:

 IMPORT { createStore } from 'redux'const store = createStore(TODOS, ['Use Redux'])FUNCTION deletingTodo(text) { return { type: 'DELETING_TODO', text }}store.dispatch(deletingTodo('Do the homework'))store.dispatch(deletingTodo('Buy coffee'))


Discussion

No Comment Found