Files
buuh/examples/mailbox/elements/pathname.js
T
Yoshua Wuyts 6407188ee9 router: change order of arguments
fixup! freeze state & rename app ns to location
2016-07-02 22:54:35 +02:00

12 lines
283 B
JavaScript

const pathname = require('pathname-match')
const html = require('../../../html')
module.exports = function (state, prev, send) {
const location = state.location.pathname
return html`
<span class="fl mt4 w-100 f4 b">
URL: ${pathname(location) || '/'}
</span>
`
}