mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 23:09:26 +08:00
10 lines
188 B
JavaScript
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);
|
|
};
|