const html = require('choo/html'); const raw = require('choo/html/raw'); module.exports = function intro(state) { const notice = state.WEB_UI.MAIN_NOTICE_HTML ? html`

${raw(state.WEB_UI.MAIN_NOTICE_HTML)}

` : ''; return html` ${notice}

${state.translate('introTitle')}

${state.translate('introDescription')}

`; };