Skip to content

Instantly share code, notes, and snippets.

@goatslacker
Last active August 29, 2015 14:16
Show Gist options
  • Save goatslacker/5a353916af65b3ee9987 to your computer and use it in GitHub Desktop.
Save goatslacker/5a353916af65b3ee9987 to your computer and use it in GitHub Desktop.
import actions from './actions'
export const bindListeners = {
handleClick: actions.FIRE
}
export const state = {
data: 1
}
export function handleClick(data) {
this.state.data = data
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment