const html = require('choo/html'); const Component = require('choo/component'); const assets = require('../../common/assets'); class Promo extends Component { constructor(name, state) { super(name); this.state = state; } update() { return false; } createElement() { return html`
Firefox ${`Like Firefox Send? You'll love our new full-device VPN. `} ${`Get it today`}
`; } } module.exports = Promo;