Skip to content

Instantly share code, notes, and snippets.

@McCulloughRT
Created October 11, 2017 04:33
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save McCulloughRT/2a2bec86c5c2454f5979904f3f2ec3ae to your computer and use it in GitHub Desktop.
Save McCulloughRT/2a2bec86c5c2454f5979904f3f2ec3ae to your computer and use it in GitHub Desktop.
export function clickMap(features) {
return {
type: 'CLICK_MAP',
payload: features
}
}
export function setStyle(style) {
return {
type: 'SET_STYLE',
payload: style
}
}
export function changeViz(event) {
return {
type: 'CHANGE_VIZ',
payload: event.target.value
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment