const html = require('choo/html'); const account = require('./account'); module.exports = function(state, emit) { const header = html`
${account(state, emit)}
`; // HACK // We only want to render this once because we // toggle the targets of the links with utils/openLinksInNewTab // header.isSameNode = function(target) { // return target && target.nodeName && target.nodeName === 'HEADER'; // }; return header; };