Refactor UI, Add ability to remove suggestions
This commit is contained in:
@ -19,7 +19,8 @@ function mapDispatchToProps(dispatch) {
|
||||
return {
|
||||
createAttendee: function(attendee) {dispatch(AttendeeActions.create(attendee))},
|
||||
removeAttendee: function(attendee) {dispatch(AttendeeActions.remove(attendee))},
|
||||
createSuggestion: function(suggestion) {dispatch(SuggestionActions.create(suggestion))}
|
||||
createSuggestion: function(suggestion) {dispatch(SuggestionActions.create(suggestion))},
|
||||
removeSuggestion: function(suggestion) {dispatch(SuggestionActions.remove(suggestion))}
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user