const html = require('choo/html'); const Component = require('choo/component'); const assets = require('../../common/assets'); class Promo extends Component { constructor(name) { super(name); } update() { return false; } createElement() { return html`
Firefox Send is brought to you by the all-new Firefox. Download Firefox now ≫
`; } } module.exports = Promo;