Created
October 11, 2017 04:33
-
-
Save McCulloughRT/2a2bec86c5c2454f5979904f3f2ec3ae to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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