We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
import { createStore } from 'redux'; const store = createStore(fn); const state = store.getState();
const ADD_TODO = '添加 TODO';
function addTodo(text) { return { type: ADD_TODO, text } }
const action = addTodo('Learn Redux');
store.dispatch({ type: 'ADD_TODO', payload: 'Learn Redux' });
There was an error while loading. Please reload this page.