1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-cerebral/modules/clock/signals.js
2017-09-23 16:30:22 +02:00

11 lines
308 B
JavaScript

import {set} from 'cerebral/operators'
import {state, props} from 'cerebral/tags'
import {startTimer, stopTimer} from './actions'
export const mounted = [
startTimer,
set(state`clock.light`, true)
]
export const unMounted = stopTimer
export const secondTicked = set(state`clock.lastUpdate`, props`now`)