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