rsnext/examples/with-redux-reselect-recompose/actions/index.js
Tim Neutkens 9c4eefcdbf
Add prettier for examples directory (#5909)
* Add prettier for examples directory

* Fix files

* Fix linting

* Add prettier script in case it has to be ran again
2018-12-17 17:34:32 +01:00

11 lines
375 B
JavaScript

import { TICK, ADD } from 'constants/actionTypes'
export const addCount = () => ({ type: ADD })
export const setClock = (light, ts) => ({ type: TICK, light, ts })
export const serverRenderClock = isServer => dispatch =>
dispatch(setClock(!isServer, Date.now()))
export const startClock = () => dispatch =>
setInterval(() => dispatch(setClock(true, Date.now())), 800)