import DesktopView from '@/core/components/views/DesktopView' import useLogin from '../hooks/useLogin' import Link from '@/core/components/elements/Link/Link' import PageContent from '@/lib/content/components/PageContent' import Alert from '@/core/components/elements/Alert/Alert' const LoginDesktop = () => { const { handleSubmit, handleChangeInput, isLoading, isValid, alert, emailRef, passwordRef } = useLogin() return (

Selamat Datang di Indoteknik

Masuk ke akun kamu untuk mulai transaksi!

{alert && ( {alert.children} )}
Belum punya akun Indoteknik?{' '} Daftar akun baru
) } export default LoginDesktop