hyper/lib/actions/index.js

14 lines
219 B
JavaScript
Raw Normal View History

import rpc from '../rpc';
import { INIT } from '../constants';
2016-07-13 12:44:24 -08:00
export function init () {
return (dispatch) => {
dispatch({
type: INIT,
effect: () => {
rpc.emit('init');
}
});
2016-10-04 11:44:10 -08:00
};
2016-07-13 12:44:24 -08:00
}