module.exports = Header var h = require('virtual-dom/h') var hyperx = require('hyperx') var hx = hyperx(h) function Header (state, dispatch) { return hx`
${getTitle()}
` function getTitle () { if (process.platform === 'darwin') { return hx`
${state.window.title}
` } } function getAddButton () { if (state.url !== 'player') { return hx` dispatch('showOpenTorrentFile')}> add ` } } }