const html = require('choo/html');
module.exports = function intro(state) {
const introTitle =
state.WEB_UI.CUSTOM_INTRO_TITLE || state.translate('introTitle');
const introDescription =
state.WEB_UI.CUSTOM_INTRO_DESCRIPTION ||
state.translate('introDescription');
return html`
${introTitle}
${introDescription}
`;
};