Files
talk/client/coral-framework/services/pym.js
T
2018-01-11 20:00:34 -07:00

10 lines
188 B
JavaScript

import Pym from 'pym.js';
const pym = new Pym.Child({ polling: 100 });
export default pym;
export const link = url => e => {
e.preventDefault();
pym.sendMessage('navigate', url);
};