mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 03:05:24 +08:00
10 lines
212 B
JavaScript
10 lines
212 B
JavaScript
import Pym from '../../../node_modules/pym.js';
|
|
|
|
const pym = new Pym.Child({polling: 100});
|
|
export default pym;
|
|
|
|
export const link = (url) => (e) => {
|
|
e.preventDefault();
|
|
pym.sendMessage('navigate', url);
|
|
};
|