var TodoActions = { create(text) { AppDispatcher.dispatch({ actionType: Constants.TODO_CREATE, text }) }, ... destroy(id){ AppDispatcher.dispatch({ actionType: Constants.TODO_DESTROY, id }) } }