hyper/lib/actions/index.js
Guillermo Rauch d47aa4470a lint
2016-10-04 21:02:39 -07:00

13 lines
214 B
JavaScript

import rpc from '../rpc';
import {INIT} from '../constants';
export function init() {
return dispatch => {
dispatch({
type: INIT,
effect: () => {
rpc.emit('init');
}
});
};
}