const html = require('choo/html'); const assets = require('../../common/assets'); module.exports = function(state, emit) { function clicked() { emit('experiment', { cd3: 'promo' }); } const classes = state.promo === 'blue' ? 'banner banner-blue' : 'banner'; return html`
Firefox Send is brought to you by the all-new Firefox. Download Firefox now ≫
`; };