diff --git a/examples/with-redux/store.js b/examples/with-redux/store.js index ce5abe4d..8291b0f4 100644 --- a/examples/with-redux/store.js +++ b/examples/with-redux/store.js @@ -32,7 +32,7 @@ export const serverRenderClock = (isServer) => dispatch => { } export const startClock = () => dispatch => { - return setInterval(() => dispatch({ type: 'TICK', light: true, ts: Date.now() }), 800) + return setInterval(() => dispatch({ type: actionTypes.TICK, light: true, ts: Date.now() }), 800) } export const addCount = () => dispatch => {