Skip to content

Instantly share code, notes, and snippets.

@jonleopard
Created May 15, 2018 17:51
Show Gist options
  • Save jonleopard/5bdf42918b13265c6b8ff9c0bf869f03 to your computer and use it in GitHub Desktop.
Save jonleopard/5bdf42918b13265c6b8ff9c0bf869f03 to your computer and use it in GitHub Desktop.
export const fetchColumns = columns => ({
type: 'FETCH_COLUMNS',
id:
columns,
})
export const addColumn = newColumn => ({
type: 'ADD_COLUMN',
id:
newColumn,
})
export const fetchCards = cards => ({
type: 'FETCH_CARDS',
id:
cards,
})
export const addCard = newCard => ({
type: 'ADD_CARD',
id:
newCard,
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment