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