import html from 'choo/html'; import { LoginController } from './controller'; export const loginView = (state, emit) => { const controller = new LoginController(state); const { i18n } = controller; return html`

${i18n.__('login.log_in')}

${i18n.__('login.create_account')}

`; }