UNPKG

moy-router

Version:

Give a solution for moy-dom router management.

18 lines (17 loc) 307 B
import { curry, type } from 'moy-fp' import { Element } from 'moy-dom' export default curry( (push, { to, innerNode, }) => Element.of( 'a', { href: type('String', to) ? to : to.pathname, onclick(e){ e.preventDefault() push(to) } }, innerNode, ) )