Skip to content

Instantly share code, notes, and snippets.

@chuyihuang
Created September 5, 2017 09:38
Show Gist options
  • Save chuyihuang/2e4cad81ba87595efd7b8e635e69701f to your computer and use it in GitHub Desktop.
Save chuyihuang/2e4cad81ba87595efd7b8e635e69701f to your computer and use it in GitHub Desktop.
week_4_demo_1
//actions改為thunk版本
import * as Types from '../types';
export function addTodo(todo) {
return (dispatch) => {
dispatch({
type: Types.ADD_TODO,
payload: todo,
})
}
}
export function toggleTodo(todo) {
return (dispatch) => {
dispatch({
type: Types.TOGGLE_TODO,
payload: todo,
})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment