just-paja/improtresk-web

View on GitHub
src/polls/actions/index.js

Summary

Maintainability
A
0 mins
Test Coverage
import * as constants from '../constants'

export const vote = (survey, answer) => ({
  type: constants.POLL_VOTE,
  survey,
  answer
})

export default { vote }