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